Files
SkinbaseNova/resources/views/errors/419.blade.php

25 lines
834 B
PHP

{{--
419 Page Expired (CSRF token mismatch)
--}}
@extends('errors._layout', [
'error_code' => 419,
'error_title' => 'Page Expired',
'error_message' => 'Your session has expired. Please refresh the page and try again.',
])
@section('badge', 'Session Expired')
@section('primary-cta')
<button onclick="window.location.reload()"
class="inline-flex items-center gap-2 rounded-xl bg-sky-500 hover:bg-sky-400 text-white font-semibold px-6 py-3 text-sm shadow-lg shadow-sky-900/30 transition-colors cursor-pointer">
<i class="fas fa-redo" aria-hidden="true"></i>
Refresh Page
</button>
@endsection
@section('secondary-ctas')
<a href="/" class="rounded-xl border border-white/10 hover:border-white/25 text-white/70 hover:text-white px-4 py-2 text-sm transition-colors">
Return Home
</a>
@endsection