Sometimes this could happen if you do not set the session config file properly and you have many laravel projects running on the same machine.
Try setting up your Session Cookie Domain under config/session.php
'domain' => '.yoursite.com', //keep the dot
Try switching driver to database in config/session.php
'driver' => env('SESSION_DRIVER', 'database'),
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community