@extends('layouts.app') @section('title', ($errorCode ?? '') . ' – ' . ($title ?? __('app.errors.error')) . ' - ' . config('app.name', 'CurioGPT')) @section('content') @php $code = $errorCode ?? '500'; $heading = $title ?? __('app.errors.something_wrong'); $body = $message ?? __('app.errors.unexpected_error'); $url = $redirectUrl ?? '/'; $label = $redirectLabel ?? __('app.errors.go_back_home'); @endphp
{{-- Ghost error code in the background --}} {{-- Title --}}

{{ $heading }}

{{-- Helpful message --}}

{{ $body }}

{{-- Redirect CTA – styled like the agent cards --}} {{-- Arrow icon --}} {{ $label }}
@endsection