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