Each time I try to login into my Laravel app I get 419 error, thou I have @csrf inside my form tag.
<form method="POST" action="{{ route('login') }}" class="form-auth-small m-t-20">
@csrf
//rest of code...
</form>
I read thru all topics on StackOverflow, but mostly I saw cache: clear and key: generate suggestions, which are not helping me. Also, I’ve cleaned my browser hundreds of times.
Once again it happens on the standart login page and master.blade.php has <meta name="csrf-token" content="{{ csrf_token() }}">.
Here is what I see in my dev console

UPDATE 2:
I noticed that a new session file is generated on each request because my cookies are always empty.
Advertisement
Answer
š
It was whitespace before <? in one of config file