Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Hamad_essa's avatar

credentials do not match our records in Laravel 6 Login Page

today I wanted to work with my laravel project but suddenly I received this error when I wanted to log in

These credentials do not match our records.

I don't change anything

i test some ways like bycript and Hash but they didn't work for me

0 likes
3 replies
Sti3bas's avatar

@hamad_essa seems like you forgot the password. You can easily update it with the Tinker: User::where('email', '[email protected]')->first()->update(['password' => Hash::make('yournewpassword')]);

Hamad_essa's avatar

actually I didn't forgot my password but also I tried this and it doesn't work for me

Please or to participate in this conversation.