@csrf @method('put')
@if($errors->updatePassword->get('current_password'))
{{ $errors->updatePassword->first('current_password') }}
@endif
@if($errors->updatePassword->get('password'))
{{ $errors->updatePassword->first('password') }}
@endif
@if($errors->updatePassword->get('password_confirmation'))
{{ $errors->updatePassword->first('password_confirmation') }}
@endif
@if (session('status') === 'password-updated')

{{ __('Saved.') }}

@endif