mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-06 13:34:50 +08:00
13 lines
289 B
PHP
13 lines
289 B
PHP
@extends('errors.general')
|
|
|
|
@section('title', trans('errors.error-occurred'))
|
|
|
|
@section('content')
|
|
<h1>{{ $level.': '.trans('errors.some-errors') }}</h1>
|
|
|
|
<p>{{ trans('errors.details').$message }}</p>
|
|
|
|
<p>{{ trans('errors.file-location') }}<b>{{ $file }}: {{ $line }}</b></p>
|
|
|
|
@endsection
|