Change Password
{!! Form::open(['id'=>'changePasswordForm','files'=>true]) !!}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::hidden('user_id',null,['id'=>'pfUserId']) !!} {!! Form::hidden('is_active',1) !!} {{csrf_field()}}
{!! Form::label('current password', 'Current Password') !!}*
{!! Form::label('password', 'New Password') !!}*
{!! Form::label('password_confirmation', 'Confirm Password') !!}*
{!! Form::button('Save', ['type'=>'submit','class' => 'btn btn-primary','id'=>'btnPrPasswordEditSave','data-loading-text'=>" Processing..."]) !!}
{!! Form::close() !!}