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

15 lines
265 B
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
@extends('errors.general')
2016-09-28 13:23:07 +08:00
@section('title', trans('errors.general.title'))
2016-07-21 22:01:57 +08:00
@section('content')
2018-07-17 11:06:55 +08:00
<h1>@lang('errors.general.title')
2017-01-08 15:20:50 +08:00
@include('setup.wizard.language')
</h1>
2016-07-21 22:01:57 +08:00
2017-01-14 18:42:30 +08:00
<p>{{ $message }}</p>
2016-07-22 13:48:33 +08:00
2017-01-14 18:42:30 +08:00
<p>{!! nl2br(trans('errors.exception.message')) !!}</p>
2016-07-22 13:48:33 +08:00
2016-07-21 22:01:57 +08:00
@endsection