{!! Form::label('first_name', 'First Name') !!} {!! Form::text('first_name', null, ['class' => 'form-control']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::label('last_name', 'Last Name') !!} {!! Form::text('last_name', null, ['class' => 'form-control']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::label('email', 'Email') !!} {!! Form::text('email', null, ['class' => 'form-control']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('password', 'Password') !!} {!! isset($record) ? help('web.password') : '' !!} {!! Form::password('password', ['class' => 'form-control', 'autocomplete' => 'new-password']) !!} @if ($errors->has('password')) {{ $errors->first('password') }}
@endif
{!! Form::label('profile_picture', 'Profile Picture') !!} {!! Form::file('profile_picture', ['accept' => 'image/*']) !!} @if ($errors->has('profile_picture')) {{ $errors->first('profile_picture') }} @endif
{!! Form::submit('Update', ['class' => 'btn btn-primary btn-flat']) !!} Cancel
@section('inlineJS') @endsection