{!! Form::label('name', __('models/students.fields.name').':') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'minlength' => 3, 'maxlength' => 100]) !!}
{!! Form::label('email', __('models/students.fields.email').':') !!}
{!! Form::email('email', null, ['class' => 'form-control', 'minlength' => 3, 'maxlength' => 255]) !!}
{!! Form::label('phone', __('models/students.fields.phone').':') !!}
{!! Form::text('phone', null, ['class' => 'form-control', 'minlength' => 6, 'maxlength' => 20]) !!}
{!! Form::label('password', __('models/students.fields.password').':') !!}
{!! Form::password('password', ['class' => 'form-control', 'minlength' => 6]) !!}