{!! Form::label('name', __('Name')) !!}*
{!! Form::text('name', null, ['class' => 'form-control','required','maxlength' => 191]) !!}
{!! Form::label('email', __('Email')) !!}*
{!! Form::email('email', null, ['class' => 'form-control','required','maxlength' => 191]) !!}
{!! Form::label('password', __('Password')) !!}
{!! Form::password('password', ['class' => 'form-control','minlength' => 8,'maxlength' => 191]) !!}
{!! Form::label('pin', __('PIN')) !!}*
{!! Form::password('pin', ['class' => 'form-control','minlength' => 4,'maxlength' => 8]) !!}
{!! Form::label('phone', __('Phone')) !!}
{!! Form::text('phone', null, ['class' => 'form-control','maxlength' => 191]) !!}
{!! Form::label('address', __('Address')) !!}
{!! Form::text('address', null, ['class' => 'form-control','maxlength' => 191]) !!}
@isset($user)
@endisset
{!! Form::label('image', __('Image')) !!}
{!! Form::file('image',['class' => 'form-control dropify']) !!}
@include('includes.dropify')