thankyou for this dig here is easy way to do thatwhat is the default password?
i have to use php artisan tinker to get the password, anyone can do it if having shell
php artisan tinker
$user = App\Models\User::where('email', '[email protected]')->first();
$user->password = Hash::make('acculance2022');
$user->save();
installation forlder\database\seeders
here you can see UserSeeder.php
you can find and even change default userpass
Reacted by: