{{-- Shared minimal error-page layout, used by errors/{404,403,419,500,503}. Self-contained inline CSS so it renders on a fresh install before any Vite asset is built and on every host (shared cPanel through to S3). Branding pulls from config so a buyer's app_name + primary colour surface immediately. --}} @php $appName = config('leadhub.branding.app_name', config('app.name', 'LeadHub')); $primary = config('leadhub.branding.primary_color', '#4f46e5'); $homeUrl = url('/'); @endphp @yield('code') · {{ $appName }} {{-- Per-tenant brand color is passed as the --err-primary CSS custom property (single dynamic style declaration; everything else is in the per-view CSS file). --}}

{{ __('errors.error_code_prefix', ['code' => '']) }}@yield('code')

@yield('heading')

@yield('message')

{{ __('errors.back_to_home') }} @hasSection('extra-action') @yield('extra-action') @endif

{{ $appName }}