First commit

This commit is contained in:
Naser Mansour
2025-12-20 20:26:03 +02:00
commit ff83974f4a
118 changed files with 19578 additions and 0 deletions
@@ -0,0 +1,11 @@
<?php
use App\Models\User;
test('confirm password screen can be rendered', function () {
$user = User::factory()->create();
$response = $this->actingAs($user)->get(route('password.confirm'));
$response->assertStatus(200);
});