All examples of resolving this issue seem to be from older versions of laravel, is there an example using version 8. Also is this something that should be covered in Jetstream?
this below does not work in version 8
if ($exception instanceof \Illuminate\Session\TokenMismatchException) {
return redirect()->route('login');
}