您能帮我用刀片语法编写此表单标记:
<form name="room" id="1" method="post" class="narrow_width">
谢谢!
答案 0 :(得分:0)
有关Form
语法和方法,请参阅http://laravel.com/docs/html。
您可以将它们包装在Blade标签中。
{{ Form::open() }}
{{ Form::text('username') }}
等...在你的情况下
{{ Form::open(array('name' => 'room', 'method' => 'post', 'class' => 'narrow_width', id => '1')) }}