retrofairie/resources/views/auth/forgot-password.blade.php

32 lines
779 B
PHP
Raw Normal View History

2025-02-19 01:51:40 +00:00
<x-guest-layout>
2025-02-20 04:43:28 +00:00
<x-slot:title>Forgot Password</x-slot>
<div>
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>
2025-02-19 01:51:40 +00:00
2025-02-20 04:43:28 +00:00
<!-- Session Status -->
<x-auth-session-status :status="session('status')" />
2025-02-19 01:51:40 +00:00
2025-02-20 04:43:28 +00:00
<form method="POST" action="{{ route('password.email') }}">
@csrf
2025-02-19 01:51:40 +00:00
2025-02-20 04:43:28 +00:00
<div class="field-row">
<label for="email">Email</label>
<input
id="email"
type="email"
name="email"
value="{{ old('email') }}"
required
autofocus
/>
<x-input-error :messages="$errors->get('email')" />
</div>
2025-02-19 01:51:40 +00:00
2025-02-20 04:43:28 +00:00
<button type="submit">Email Password Reset Link</button>
</form>
2025-02-19 01:51:40 +00:00
</x-guest-layout>