mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
12 lines
298 B
PHP
12 lines
298 B
PHP
|
@extends('errors.general')
|
||
|
|
||
|
@section('title', '500 Internal Server Error')
|
||
|
|
||
|
@section('content')
|
||
|
<h1>500 Internal Server Error
|
||
|
@include('setup.wizard.language')
|
||
|
</h1>
|
||
|
|
||
|
<p>{{ trans('errors.exception.detail', ['msg' => $exception->getMessage() ?: trans('errors.http.msg-500')]) }}</p>
|
||
|
@endsection
|