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')
|
2016-09-28 13:23:07 +08:00
|
|
|
<h1>{{ $level.': '.trans('errors.exception.title') }}</h1>
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-09-28 13:23:07 +08:00
|
|
|
<p>{{ trans('errors.exception.message', ['msg' => $message]) }}</p>
|
2016-07-22 13:48:33 +08:00
|
|
|
|
2016-09-28 13:23:07 +08:00
|
|
|
<p>{!! trans('errors.exception.location', ['location' => "<b>$file: $line</b>"]) !!}</p>
|
2016-07-22 13:48:33 +08:00
|
|
|
|
2016-07-21 22:01:57 +08:00
|
|
|
@endsection
|