mirror of
https://github.com/brufdev/many-notes.git
synced 2026-05-24 04:09:10 -05:00
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<div class="flex flex-grow">
|
|
<x-layouts.guestMain>
|
|
<x-form wire:submit="send" class="flex flex-col gap-6">
|
|
<x-form.input
|
|
name="form.email"
|
|
label="{{ __('Email') }}"
|
|
type="email"
|
|
required
|
|
/>
|
|
|
|
<x-form.input
|
|
name="form.password"
|
|
label="{{ __('New password') }}"
|
|
type="password"
|
|
required
|
|
autofocus
|
|
/>
|
|
|
|
<x-form.input
|
|
name="form.password_confirmation"
|
|
label="{{ __('Confirm password') }}"
|
|
type="password"
|
|
required
|
|
/>
|
|
|
|
<x-form.submit label="{{ __('Reset Password') }}" target="send" />
|
|
</x-form>
|
|
|
|
<div class="text-center">
|
|
<x-form.text>
|
|
<x-form.link wire:navigate href="{{ route('login') }}">
|
|
{{ __('Back to Sign in') }}
|
|
</x-form.link>
|
|
</x-form.text>
|
|
</div>
|
|
</x-layouts.guestMain>
|
|
</div>
|