In Laravel, we can do forms with this:
{{Form::radio(name, value, checked, options)}}
{{Form::checkbox(name, value, checked, options)}}
{{Form::select(name, list, selected, options)}}
{{Form::text(name, value, options)}}
{{Form::textarea(name, value, options)}}
But, how can we do for custom type of input? For example:
<input type='color' name='color' class='colorpicker' />
I have tried with this, but it doesn't work:
{{Form::text('color', null, array("type"=>"color"))}}
How can I achieve that with Laravel form?
Thank you.