movie-night-nuevo/resources/views/pages/auth/reset-password.blade.php

44 lines
1.3 KiB
PHP
Raw Normal View History

2025-12-12 23:07:04 -06:00
<div class="text-2xl">
<h1 class="text-center m-5">Reset Password</h1>
2025-12-15 23:53:07 -06:00
<form class="flex flex-col gap-5" wire:submit="resetPassword">
2025-12-12 23:07:04 -06:00
@csrf
@if($errors->any())
<div class="text-red-500">
@foreach($errors->all() as $error)
<p>{{$error}}</p>
@endforeach
</div>
@endif
<div class="flex flex-col">
<label class="py-5" for="email">Email</label>
<input
class="bg-white"
type="email"
name="email"
2025-12-15 23:53:07 -06:00
wire:model.live="form.email"
2025-12-12 23:07:04 -06:00
/>
</div>
<div class="flex flex-col">
<label class="py-5" for="password">Password</label>
<input
class="bg-white"
type="password"
name="password"
2025-12-15 23:53:07 -06:00
wire:model.live="form.password"
2025-12-12 23:07:04 -06:00
/>
</div>
<div class="flex flex-col">
<label class="py-5" for="password_confirmation">Confirm Password</label>
<input
class="bg-white"
type="password"
name="password_confirmation"
2025-12-15 23:53:07 -06:00
wire:model.live="form.password_confirmation"
2025-12-12 23:07:04 -06:00
/>
</div>
<button type="submit">Submit</button>
</form>
</div>