Due to limitation of internet connection in my area, I decided to not using the laravel/ui package.
My problem is that the Auth::attempt is not working properly. The hash keeps changing so the hashed password do not match. Help.
if (Auth::attempt(['email'=> $request->input('email'), 'password'=> $request->input('password')])
2
Answers
use Hash;
Hash::make($request->input(‘input’));
First of all query to get user
Then check hashed password with input password