16 lines
859 B
PHP
16 lines
859 B
PHP
<x-layout.guest>
|
|
<x-slot:heading>Reset 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">
|
|
<form class="space-y-6" action="/reset-password" method="POST">
|
|
@csrf
|
|
<x-form.field name="email" label_text="Email address" type="email" autocomplete="email" required />
|
|
<x-form.field name="password" label_text="Password" type="password" required />
|
|
<x-form.field name="password_confirmation" label_text="Confirm Password" type="password" required />
|
|
<input type="hidden" name="token" id="token" value="{{ request()->route('token') }}" >
|
|
<x-form.button>Reset Password</x-form.button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</x-layout.guest>
|