|
0
|
1 <x-guest-layout>
|
|
|
2 <form method="POST" action="{{ route('password.store') }}">
|
|
|
3 @csrf
|
|
|
4
|
|
|
5 <!-- Password Reset Token -->
|
|
|
6 <input type="hidden" name="token" value="{{ $request->route('token') }}">
|
|
|
7
|
|
|
8 <!-- Email Address -->
|
|
|
9 <div class="mb-3">
|
|
|
10 <x-input-label for="email" :value="__('Email')" />
|
|
|
11 <x-text-input id="email" class="form-control" type="email" name="email" :value="old('email', $request->email)" required autofocus autocomplete="username" />
|
|
|
12 <x-input-error :messages="$errors->get('email')" class="mt-2" />
|
|
|
13 </div>
|
|
|
14
|
|
|
15 <!-- Password -->
|
|
|
16 <div class="mb-3">
|
|
|
17 <x-input-label for="password" :value="__('Password')" />
|
|
|
18 <x-text-input id="password" class="form-control" type="password" name="password" required autocomplete="new-password" />
|
|
|
19 <x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
|
20 </div>
|
|
|
21
|
|
|
22 <!-- Confirm Password -->
|
|
|
23 <div class="mb-3">
|
|
|
24 <x-input-label for="password_confirmation" :value="__('Confirm Password')" />
|
|
|
25 <x-text-input id="password_confirmation" class="form-control" type="password" name="password_confirmation" required autocomplete="new-password" />
|
|
|
26 <x-input-error :messages="$errors->get('password_confirmation')" class="mt-2" />
|
|
|
27 </div>
|
|
|
28
|
|
|
29 <div class="d-flex justify-content-end mt-4">
|
|
|
30 <x-primary-button>
|
|
|
31 {{ __('Reset Password') }}
|
|
|
32 </x-primary-button>
|
|
|
33 </div>
|
|
|
34 </form>
|
|
|
35 </x-guest-layout>
|