@extends('errors::customized-layout') @php $template = \App\Models\HttpStatusTemplate::firstWhere('code', 500) @endphp @section('title', $template?->title ?? __('Server Error')) @section('header') {!! $template?->header !!} @endsection @section('body') {!! $template?->body ?? ($exception->getMessage() ?: 'Forbidden') !!} @endsection @section('footer') {!! $template?->footer !!} @endsection @section('background_color', $template?->background_color) @section('code', '500')