auditionadmin/resources/views/auth/forgot-password.blade.php

20 lines
799 B
PHP

<x-layout.guest>
<x-slot:heading>I Forgot My Password</x-slot:heading>
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-[480px]">
<div class="bg-white px-6 py-12 shadow sm:rounded-lg sm:px-12">
<div>
@if (session('status'))
<div class="mb-4 font-medium text-sm text-green-600">
{{ session('status') }}
</div>
@endif
</div>
<form class="space-y-6" action="/forgot-password" method="POST">
@csrf
<x-form.field name="email" label="Email address" type="email" autocomplete="email" required />
<x-form.button>Send Password Reset</x-form.button>
</form>
</div>
</div>
</x-layout.guest>