“The page has expired due to inactivity” - Laravel 5.5
My register page is showing the form properly with CsrfToken ( {{ csrf_field() }} ) present in the form). Form HTML <form class="form-horizontal registration-form" novalidate method="POST" action="{{ route('register') }}"> {{ csrf_field() }} .... </form> I am using inbuilt authentication for the users. Have not changed anything except the routes and redirects. When I submit the form (just after reloading also), it gives that The page has expired due to inactivity. Please refresh and try again. error. My be I am missing a very small thing. But not sure what it is. Any help? Update Found the