<!--
419 -- the CSRF token did not match.
In practice this means the session expired while a form sat open. Reloading
mints a fresh `XSRF-TOKEN` cookie, so the retry succeeds.
-->
<script setup lang="ts">
import { Head, Link } from '@inertiajs/vue3'
</script>
<template>
<div class="error-page">
<Head title="Page expired" />
<p class="status">419</p>
<h1>The page expired</h1>
<p class="muted">Your session timed out. Reload and try again.</p>
<Link class="button" href="/">Go home</Link>
</div>
</template>