Go to config/sessions.php
find the row
'secure' => env('SESSION_SECURE_COOKIE', true),
change it to false
'secure' => env('SESSION_SECURE_COOKIE', false),
If this parameter is set to TRUE browser will require you to use HTTPS protocol, otherwise it wont store the session. As it is not valid