Package views now write <x-livewire-material::button>, so a configured prefix (which Blade spells <x-m::button>) and an application component of the same name can no longer break or shadow them. The showcase rewrites its examples to the configured prefix. Adds the README, and waits for the adaptive rail to hear a resize before the navigation tests press its menu button. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
17 lines
784 B
PHP
17 lines
784 B
PHP
{{-- Page expired: the form's CSRF token outlived the session. Reloading the page the form was on
|
|
issues a new one, so that is the action — a link to it, never a reload of this response,
|
|
which would post the stale form again. --}}
|
|
|
|
@extends('errors::minimal')
|
|
|
|
@section('title', __('Page Expired'))
|
|
@section('code', '419')
|
|
@section('shape', 'clover-4')
|
|
@section('headline', __('This page has expired'))
|
|
@section('message', __('It was open for a while. Refresh it, then try again.'))
|
|
|
|
@section('actions')
|
|
<x-livewire-material::button :link="url()->previous()" :label="__('Refresh the page')" variant="filled" size="md" no-wire-navigate />
|
|
<x-livewire-material::button :link="url('/')" :label="__('Go home')" variant="text" size="md" no-wire-navigate />
|
|
@endsection
|