I use auth()->attempt()
with remember me parameters.
if (auth()->attempt($credentials, $rememberMe)) {
When remember me is false, I can login normally,
but when remember me is true, I got an error.
RuntimeException
Cookie jar has not been set.
I tried to set .env
from SESSION_DRIVER=file
to SESSION_DRIVER=cookie
but still didn't work.
I'm using Laravel 7.24 and PHP 7.4.11
I fixed this problem for myself by putting
'driver' => 'session'
underguards
array inconfig/auth.php
. But I was using different guard for admin panel authentication, so it might just be that you have this misconfigured as well.