Reset Your Password
@lang('auth.reset_password.title')
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
Email
@if ($errors->has('email'))
{{ $errors->first('email') }}
@else
Enter a valid email
@endif
Password
@if ($errors->has('password'))
{{ $errors->first('password') }}
@else
Enter a password
@endif
Confirm Password
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@else
Enter a password confirmation
@endif
Reset Password
Back to login