Closed AnnoyingTechnology closed 1 year ago
Laravel : 10 HTML : 6.4
The following snippet
{{ Form::text( 'email', $email, [ 'type'=>'email', ]) }}
Should produce an <input type="email" /> allowing for Javascript validation of emails, but it produces <input type="text"/> instead.
<input type="email" />
<input type="text"/>
Nevermind, it's actually Form::email
Form::email
Laravel : 10 HTML : 6.4
The following snippet
Should produce an
<input type="email" />
allowing for Javascript validation of emails, but it produces<input type="text"/>
instead.