I have this line in blade format
{{ Form::text('date', null, array('class' => 'form-control', 'type' => 'Date', 'placeholder' => 'Date' )) }}
but when the page loads, the type attribute does not get permission to 'date', it goes to 'text'.
How do I get this in the blade?
<input class="form-control" type="date" placeholder="Date" name="date">
source share