从Laravel 5中Laravel 4的照片中,使用
HTML和FORM类的正确方法是什么?
在Laravel 4中,我可以这样使用:
{{ Form::open(array('url' => 'foo/bar')) }} // Anything {{ Form::close() }}
我可以添加如下输入:
{{ Form::text('username'); }} {{ Form::text('email','example@gmail.com'); }} {{ Form::password('password'); }} {{ Form::email($name,$value = null,$attributes = array()); }} {{ Form::file($name,$attributes = array()); }}
我怎么能在Laravel 5中做同样的事情?
第一次
install the package from Laravel Collective
原文链接:https://www.f2er.com/laravel/136678.html然后,当您使用它时,请务必使用Laravel 5的新原始刀片标签:
{!! Form::text('username') !!}