{{ __('messages.change_password.change_password') }}

{{ Form::open(['class' => 'form', 'id' => 'changePasswordForm']) }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ Form::hidden('user_id', null, ['id' => 'pfUserId']) }} {{ Form::hidden('is_active', 1) }} @csrf
{{ Form::label('current password', __('messages.change_password.current_password') . ':', ['class' => 'form-label']) }}
{{ $errors->first('password_current') }}
{{ Form::label('current password', __('messages.change_password.new_password') . ':', ['class' => 'form-label']) }}
{{ $errors->first('password') }}
{{ Form::label('password_confirmation', __('messages.change_password.confirm_password') . ':', ['class' => 'form-label']) }}
{{ $errors->first('password') }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary me-3', 'id' => 'btnPrPasswordEditSave', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}