You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
<x-guest-layout>
|
|
<x-authentication-card>
|
|
<x-slot name="logo">
|
|
<x-authentication-card-logo />
|
|
</x-slot>
|
|
|
|
<x-validation-errors class="mb-4" />
|
|
|
|
<form method="POST" action="{{ route('password.update') }}">
|
|
@csrf
|
|
|
|
<input type="hidden" name="token" value="{{ $request->route('token') }}">
|
|
|
|
<div class="block">
|
|
<x-label for="email" value="{{ __('Email') }}" />
|
|
<x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email', $request->email)" required autofocus autocomplete="username" />
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<x-label for="password" value="{{ __('Password') }}" />
|
|
<x-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="new-password" />
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<x-label for="password_confirmation" value="{{ __('Confirm Password') }}" />
|
|
<x-input id="password_confirmation" class="block mt-1 w-full" type="password" name="password_confirmation" required autocomplete="new-password" />
|
|
</div>
|
|
|
|
<div class="flex items-center justify-end mt-4">
|
|
<x-button>
|
|
{{ __('Reset Password') }}
|
|
</x-button>
|
|
</div>
|
|
</form>
|
|
</x-authentication-card>
|
|
</x-guest-layout>
|