Skip to content

Commit da33004

Browse files
committed
Update default test user password
1 parent 6f59a29 commit da33004

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/User/Database/Seeders/UserSeeder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private function createTestUsers(): void
3434
'name' => $userName,
3535
'email' => $userEmail,
3636
'email_verified_at' => now(),
37-
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
37+
'password' => bcrypt('SuperSecretPassword123!@#'),
3838
]);
3939
}
4040
}

resources/js/Pages/AdminAuth/LoginForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ import useFormErrors from '@/Composables/useFormErrors'
9292
9393
const form = useForm({
9494
95-
password: 'password',
95+
password: 'SuperSecretPassword123!@#',
9696
remember: false
9797
})
9898

0 commit comments

Comments
 (0)