Level 67
Check their docs: https://laravelcollective.com/docs/5.4/html#form-model-binding
what is the meaning of this laravel collective form
@if(isset($image))
{!! Form::model($image,['method'=>'put','files'=>true]) !!}
@else
{!! Form::open(['files'=>true]) !!}
@endif
how can I convert it to normal form?
Please or to participate in this conversation.