skip to Main Content

Laravel 11 – This password does not use the Bcrypt algorithm

Error during Auth::attempt($credentials) . Followed https://laravel.com/docs/11.x/authentication#authenticating-users I've created simple seeder: $hashedPassword = Hash::make('password'); User::factory()->create([ 'name' => 'Admin User', 'login' => 'admin', 'password' => $hashedPassword, 'role' => 'Admin', ]); Phpmyadmin I am trying to log in user with public function loginUser(Request…

VIEW QUESTION
Back To Top
Search