In this article, we'll learn how to resolve the "419 page expired" error in Laravel. You might have encountered the message "The page has expired due to inactivity. Please refresh and try again" in your Laravel applications. This issue is related to the csrf_token, and we'll explore two solutions to fix it.
Let's dive into solving the 419 error in Laravel, including how to handle it in Laravel AJAX requests.
If you are getting an error after submitting the form in laravel then you need to add the CSRF field in your form like below.
<form method="POST" action="/test">
@csrf
.....
</form>
If you are getting an error after an AJAX call then you need to add a header like the below in the meta tag.
In your head tag add the below line code.
<meta name="csrf-token" content="{{ csrf_token() }}">
And after that, you need to add below code in your script tag.
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
In some conditions also happen Cache issue, So, we need to clear it.
For clearing Cache, View, and Routes in Laravel check below.
You might also like:
When I started working with Laravel 11 and Livewire 3, I wanted a simple way to import CSV files into my project. It sou...
Mar-24-2025
In this article, we will see laravel 9 socialite login with twitter account. Many websites provide different t...
Nov-12-2022
In this small post, we will solve the laravel 8 form class not found error, many time we have received errors like the l...
Mar-12-2021
Hello Guys, In this tutorial we will see how to perform Node js Express CRUD example with mysql. Node js Express ...
Aug-02-2021