@extends('layouts.blank') @push('styles') @endpush @section('content')

Reset Password

Send a password reset mail to reset your password

@if(session('status') || $errors->has('email'))
{{ session('status') ?? $errors->first('email') }}
@endif
{{ __('Reset Password') }}
@csrf
@if ($errors->has('email') && $errors->first('email') === 'The email must be a valid email address.') {{ $errors->first('email') }} @endif
@if((bool) config_cache('captcha.enabled'))
{!! Captcha::display(['data-theme' => 'dark']) !!}
@if ($errors->has('h-captcha-response'))
{{ $errors->first('h-captcha-response') }}
@endif @endif
@endsection @push('scripts') @endpush @push('styles') @endpush