initial commit
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Edward Tirado Jr 2025-12-12 23:07:04 -06:00
commit 0c42bef077
109 changed files with 16545 additions and 0 deletions

View file

@ -0,0 +1,43 @@
<div class="text-2xl">
<h1 class="text-center m-5">Reset Password</h1>
<form class="flex flex-col gap-5" wire:submit.prevent="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="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="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="form.password_confirmation"
/>
</div>
<button type="submit">Submit</button>
</form>
</div>