{!! Form::label('name', __('models/teachers.fields.name').':') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'minlength' => 3, 'maxlength' => 100]) !!}
{!! Form::label('email', __('models/teachers.fields.email').':') !!} {!! Form::email('email', null, ['class' => 'form-control', 'required', 'minlength' => 3, 'maxlength' => 255]) !!}
{!! Form::label('password', __('models/teachers.fields.password').':') !!} {!! Form::password('password', ['class' => 'form-control', 'minlength' => 6]) !!}
{!! Form::label('photo', __('models/teachers.fields.photo').':') !!}
{!! Form::file('photo', ['class' => 'form-control']) !!}
{!! Form::hidden('is_active', 0) !!} {!! Form::checkbox('is_active', 1, null, ['id'=>'is_active','class' => 'custom-control-input']) !!} {!! Form::label('is_active', __('models/teachers.fields.is_active').':', ['class' => 'custom-control-label mt-1']) !!}