2022-02-11 17:26:15 +01:00
< x - guest - layout >
< x - auth - card >
< x - slot name = " logo " >
< a href = " / " >
2022-04-14 10:49:56 +02:00
< img src = " img/undraw_not_found_-60-pq.svg " class = " w-60 h-60 fill-current text-gray-500 " />
2022-02-11 17:26:15 +01:00
</ a >
</ x - slot >
< div class = " mb-4 text-sm text-gray-600 " >
{{ __ ( 'Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.' ) }}
</ div >
<!-- Session Status -->
< x - auth - session - status class = " mb-4 " : status = " session('status') " />
<!-- Validation Errors -->
< x - auth - validation - errors class = " mb-4 " : errors = " $errors " />
< form method = " POST " action = " { { route('password.email') }} " >
@ csrf
<!-- Email Address -->
< div >
< x - label for = " email " : value = " __('Email') " />
< x - input id = " email " class = " block mt-1 w-full " type = " email " name = " email " : value = " old('email') " required autofocus />
</ div >
< div class = " flex items-center justify-end mt-4 " >
< x - button >
{{ __ ( 'Email Password Reset Link' ) }}
</ x - button >
</ div >
</ form >
</ x - auth - card >
</ x - guest - layout >