mirror of https://github.com/kcal-app/kcal.git
				
				
				
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <x-guest-layout>
 | |
|     <x-auth-card>
 | |
|         <x-slot name="logo">
 | |
|             <a href="/">
 | |
|                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" />
 | |
|             </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-inputs.label for="email" value="Email" />
 | |
| 
 | |
|                 <x-inputs.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-inputs.button>Email Password Reset Link</x-inputs.button>
 | |
|             </div>
 | |
|         </form>
 | |
|     </x-auth-card>
 | |
| </x-guest-layout>
 |