| 
@section('title', 'Reset password')
 <div>
 <div class="sm:mx-auto sm:w-full sm:max-w-md">
 <a href="{{ route('home') }}">
 <x-logo class="w-auto h-16 mx-auto text-indigo-600" />
 </a>
 
 <h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
 Reset password
 </h2>
 </div>
 
 <div class="mt-8 sm:mx-auto sm:w-full sm:max-w-md">
 <div class="px-4 py-8 bg-white shadow sm:rounded-lg sm:px-10">
 @if ($emailSentMessage)
 <div class="rounded-md bg-green-50 p-4">
 <div class="flex">
 <div class="flex-shrink-0">
 <svg class="h-5 w-5 text-green-400" fill="currentColor" viewBox="0 0 20 20">
 <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
 </svg>
 </div>
 
 <div class="ml-3">
 <p class="text-sm leading-5 font-medium text-green-800">
 {{ $emailSentMessage }}
 </p>
 </div>
 </div>
 </div>
 @else
 <form wire:submit.prevent="sendResetPasswordLink">
 <div>
 <label for="email" class="block text-sm font-medium text-gray-700 leading-5">
 Email address
 </label>
 
 <div class="mt-1 rounded-md shadow-sm">
 <input wire:model.lazy="email" id="email" name="email" type="email" required autofocus class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md placeholder-gray-400 focus:outline-none focus:ring-blue focus:border-blue-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5 @error('email') border-red-300 text-red-900 placeholder-red-300 focus:border-red-300 focus:ring-red @enderror" />
 </div>
 
 @error('email')
 <p class="mt-2 text-sm text-red-600">{{ $message }}</p>
 @enderror
 </div>
 
 <div class="mt-6">
 <span class="block w-full rounded-md shadow-sm">
 <button type="submit" class="flex justify-center w-full px-4 py-2 text-sm font-medium text-white bg-indigo-600 border border-transparent rounded-md hover:bg-indigo-500 focus:outline-none focus:border-indigo-700 focus:ring-indigo active:bg-indigo-700 transition duration-150 ease-in-out">
 Send password reset link
 </button>
 </span>
 </div>
 </form>
 @endif
 </div>
 </div>
 </div>
 
 |