Consider that i have a contact form in my contact page,
So why should i use something like laravel collective that is a form builder.
I can simply write down my html codes in contact view like this:
<input class="form-control" name="company" type="text">
instead of this :
{{ Form::text('company', null, ['class' => 'form-control']) }}
What is the benefit?
Form::select('name', $array)
.You can also refer to the laravel Documentation Laravel Doc for form Builder