Laravel(刀片)上的HTML5必需属性不起作用

This is my very first question, i think it's kinda stupid question but I need your help. I'm working on a project right now, and i'm kinda stuck on a veeeery little problem. It seems like the input fields on my form are ignoring the required attribute. Anything else is workin but this one! Here's the piece of code:

{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'es. Paolo Rossi', 'required']) !!}

Thank you!

You can try this way: required is an input attribute. So it can be as follows:

{{ Form:: text('name', null, array('class' => 'form-control', 'required' => '')) }}

This will produce the following output:

<input type="text" name="name" class="form-control" required>