blessing-skin-server/resources/views/errors/exception.tpl

13 lines
289 B
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
@extends('errors.general')
2016-09-18 19:45:01 +08:00
@section('title', trans('errors.error-occurred'))
2016-07-21 22:01:57 +08:00
@section('content')
2016-09-18 19:45:01 +08:00
<h1>{{ $level.': '.trans('errors.some-errors') }}</h1>
2016-07-21 22:01:57 +08:00
2016-09-18 19:45:01 +08:00
<p>{{ trans('errors.details').$message }}</p>
2016-07-22 13:48:33 +08:00
2016-09-18 19:45:01 +08:00
<p>{{ trans('errors.file-location') }}<b>{{ $file }}: {{ $line }}</b></p>
2016-07-22 13:48:33 +08:00
2016-07-21 22:01:57 +08:00
@endsection