Files

37 lines
1.3 KiB
PHP
Raw Permalink Normal View History

<x-layouts.guest>
<x-ui.authentication-card>
2024-08-01 13:53:10 -05:00
<x-slot name="logo">
<div class="w-24 mb-10">
<x-ui.logo />
</div>
2024-08-01 13:53:10 -05:00
</x-slot>
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
{{ __('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-ui.alert icon="o-envelope" class="alert-success mb-4">
2024-08-01 13:53:10 -05:00
{{ $value }}
</x-ui.alert>
2024-08-01 13:53:10 -05:00
@endsession
<x-ui.errors class="mb-4" />
2024-08-01 13:53:10 -05:00
<form method="POST" action="{{ route('password.email') }}">
@csrf
<div class="block">
<x-ui.input id="email" label="{{ __('Email') }}" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus autocomplete="username" />
2024-08-01 13:53:10 -05:00
</div>
<div class="flex items-center justify-end mt-4">
<x-ui.button class="btn-primary" type="submit">
2024-08-01 13:53:10 -05:00
{{ __('Email Password Reset Link') }}
</x-ui.button>
2024-08-01 13:53:10 -05:00
</div>
</form>
</x-ui.authentication-card>
</x-layouts.guest>