{{ __('Update Password') }}

{{ __('Ensure your account is using a long, random password to stay secure.') }}

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