I am creating forms, and it does not matter how I do it, the CSRF _token is always the same!
It doesnt matter if I use
{{ Form::open([route' => 'login']) ]]
or if I use
{{ Form::token() }}
It is the same one every single time. Even after I make a successful Form submission. I figured it would get consumed and a new one would be generated, but no!
Did I miss a configuration step?
Note: I know that if the laravel_session
gets regenerated, the _token is different, but as I had understand, the CRSF token was also the mechanism to avoid multiple form submissions , so it should change on every refresh of page, or at least after is consumed after one successful post submission, no?