First of all you need to check config file /config/session.php and find where session files are stored.
That error can appear because:
- Session is stored in files and directory storage/framework/sessions is forbidden for writing.
- If error appears after you try to login/register, you should check that there is
{{ csrf_field() }}
in your template - You store session in array. This mode for testing only.
Leave a Comment