You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
428 B

2 years ago
@extends('errors.layout')
@php
$error_number = 500;
@endphp
@section('title')
It's not you, it's me.
@endsection
@section('description')
@php
$default_error_message = "An internal server error has occurred. If the error persists please contact the development team.";
@endphp
{!! isset($exception)? ($exception->getMessage()?e($exception->getMessage()):$default_error_message): $default_error_message !!}
@endsection