movie-night-nuevo/resources/views/pages/auth/reset-password.blade.php
Edward Tirado Jr. e3b6d302c6
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Fixed livewire script loading issues
2025-12-15 23:53:07 -06:00

43 lines
1.3 KiB
PHP

<div class="text-2xl">
<h1 class="text-center m-5">Reset Password</h1>
<form class="flex flex-col gap-5" wire:submit="resetPassword">
@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"
wire:model.live="form.email"
/>
</div>
<div class="flex flex-col">
<label class="py-5" for="password">Password</label>
<input
class="bg-white"
type="password"
name="password"
wire:model.live="form.password"
/>
</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"
wire:model.live="form.password_confirmation"
/>
</div>
<button type="submit">Submit</button>
</form>
</div>