Bước 1: Truy cập vào thư mục routes
Bước 2: Mở file web.php
Mở file và thêm vào code sau. Lưu ý thay 123456
bằng mật khẩu bạn muốn thay đổi.
Route::get('changepassword', function() {
$user = App\Models\User::where('email', 'admin@laravel.com')->first();
$user->password = Hash::make('123456');
$user->save();
echo 'Password changed successfully.';
});
Bước 3: Reset mật khẩu
Bây giờ bạn hãy truy cập vào YOUR_DOMAIN_URL/changepassword
và thực hiện reset