mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-06 13:34:50 +08:00
11 lines
289 B
PHP
11 lines
289 B
PHP
|
@extends('errors.general')
|
||
|
|
||
|
@section('title', trans('errors.general.title'))
|
||
|
|
||
|
@section('content')
|
||
|
<h1>{{ trans('errors.general.title') }}</h1>
|
||
|
|
||
|
<p>{{ trans('errors.exception.code', ['code' => $code]) }}</p>
|
||
|
<p>{!! trans('errors.exception.message', ['msg' => $message]) !!}</p>
|
||
|
@endsection
|