Home > Article > Web Front-end > How to handle exceptions displayed when post submits data
The page has expired due to inactivity. Please refresh and try again
This is due to this requirement in the laravel framework: any HTML form that points to the POST, PUT or DELETE route in the web Requests should all contain a CSRF token, otherwise, the request will be rejected.
eg:
<form method="POST" action="/profile"> {{ csrf_field() }} ...</form>
The above is the detailed content of How to handle exceptions displayed when post submits data. For more information, please follow other related articles on the PHP Chinese website!