Skip to content Skip to sidebar Skip to footer

How To Write Form Markup In Laravel4

Can you help me to write this form tag in blade sintax:
Thank you!

Solution 1:

See http://laravel.com/docs/html for the Form syntax and methods.

You can wrap these in Blade tags.

{{ Form::open() }}
{{ Form::text('username') }}

Etc... In your case

{{ Form::open(array('name' => 'room', 'method' => 'post', 'class' => 'narrow_width', id => '1')) }}

Post a Comment for "How To Write Form Markup In Laravel4"