5 <x-application-logo class="w-20 h-20 fill-current text-gray-500" />
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.') }}
13 <!-- Session Status -->
14 <x-auth-session-status class="mb-4" :status="session('status')" />
16 <!-- Validation Errors -->
17 <x-auth-validation-errors class="mb-4" :errors="$errors" />
19 <form method="POST" action="{{ route('password.email') }}">
22 <!-- Email Address -->
24 <x-label for="email" :value="__('Email')" />
26 <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
29 <div class="flex items-center justify-end mt-4">
31 {{ __('Email Password Reset Link') }}