Just figured out, in case someone has the same issue here is the solution.
Apache was configured to add flag httponly and secure for every cookie
Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure
but I'm not using https, so changing the line to
Header edit Set-Cookie ^(.*)$ $1;HttpOnly
solved the problem
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community