Change the default password to 12345678

This commit is contained in:
Alex Tselegidis 2024-05-17 12:59:47 +02:00
parent ae71fa26eb
commit 26a9dc43ab

View File

@ -41,12 +41,12 @@ class UsersSeeder extends Seeder
'updated_at' => date('Y-m-d H:i:s'),
'name' => 'Admin',
'email' => 'admin@example.org',
'password' => Hash::make('12345'),
'password' => Hash::make('12345678'),
'locale' => 'en-US',
'encrypt' => false,
'admin' => true,
]);
echo 'Login with the default admin user (email: admin@example.org & password: 12345).' . PHP_EOL;
echo 'Login with the default admin user (email: admin@example.org & password: 12345678).' . PHP_EOL;
}
}