@extends('layouts.error') @section('title', __('errors.500.title')) @section('content')

500

{{ __('errors.500.heading') }}

{{ __('errors.500.description') }}

{{ __('buttons.go_to_dashboard') }} {{ __('buttons.retry') }}
@if(config('app.debug') && isset($exception))
{{ __('errors.500.show_debug') }}
{{ $exception->getMessage() }}
@endif
@endsection