Created
October 17, 2016 03:02
-
-
Save raank/17ffd9b71050cda49f8bc02e033d2c1f to your computer and use it in GitHub Desktop.
Form html to Ajax
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="col-xs-12"> | |
| <div id="alertas"></div> | |
| {{ Form::open([ | |
| 'url' => url('url/para/a/rota'), | |
| 'id' => 'MyForm', | |
| 'method' => 'POST' | |
| ]); | |
| {{ Form::text('nome', '', ['class'=>'form-group', 'id'=>'nome']) }} | |
| {{ Form::close() }} | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment