]> git.localhorst.tv Git - alttp.git/blob - resources/views/auth/forgot-password.blade.php
add discord auth
[alttp.git] / resources / views / auth / forgot-password.blade.php
1 <x-guest-layout>
2     <x-auth-card>
3         <x-slot name="logo">
4             <a href="/">
5                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" />
6             </a>
7         </x-slot>
8
9         <div class="mb-4 text-sm text-gray-600">
10             {{ __('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.') }}
11         </div>
12
13         <!-- Session Status -->
14         <x-auth-session-status class="mb-4" :status="session('status')" />
15
16         <!-- Validation Errors -->
17         <x-auth-validation-errors class="mb-4" :errors="$errors" />
18
19         <form method="POST" action="{{ route('password.email') }}">
20             @csrf
21
22             <!-- Email Address -->
23             <div>
24                 <x-label for="email" :value="__('Email')" />
25
26                 <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
27             </div>
28
29             <div class="flex items-center justify-end mt-4">
30                 <x-button>
31                     {{ __('Email Password Reset Link') }}
32                 </x-button>
33             </div>
34         </form>
35     </x-auth-card>
36 </x-guest-layout>