]> git.localhorst.tv Git - alttp.git/blob - resources/views/auth/reset-password.blade.php
add discord auth
[alttp.git] / resources / views / auth / reset-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         <!-- Validation Errors -->
10         <x-auth-validation-errors class="mb-4" :errors="$errors" />
11
12         <form method="POST" action="{{ route('password.update') }}">
13             @csrf
14
15             <!-- Password Reset Token -->
16             <input type="hidden" name="token" value="{{ $request->route('token') }}">
17
18             <!-- Email Address -->
19             <div>
20                 <x-label for="email" :value="__('Email')" />
21
22                 <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email', $request->email)" required autofocus />
23             </div>
24
25             <!-- Password -->
26             <div class="mt-4">
27                 <x-label for="password" :value="__('Password')" />
28
29                 <x-input id="password" class="block mt-1 w-full" type="password" name="password" required />
30             </div>
31
32             <!-- Confirm Password -->
33             <div class="mt-4">
34                 <x-label for="password_confirmation" :value="__('Confirm Password')" />
35
36                 <x-input id="password_confirmation" class="block mt-1 w-full"
37                                     type="password"
38                                     name="password_confirmation" required />
39             </div>
40
41             <div class="flex items-center justify-end mt-4">
42                 <x-button>
43                     {{ __('Reset Password') }}
44                 </x-button>
45             </div>
46         </form>
47     </x-auth-card>
48 </x-guest-layout>