15 lines
364 B
PHP
15 lines
364 B
PHP
@extends('errors.general')
|
|
|
|
@section('title', trans('errors.general.title'))
|
|
|
|
@section('content')
|
|
<h1>{{ $level.': '.trans('errors.exception.title') }}
|
|
@include('setup.wizard.language')
|
|
</h1>
|
|
|
|
<p>{{ trans('errors.exception.message', ['msg' => $message]) }}</p>
|
|
|
|
<p>{!! trans('errors.exception.location', ['location' => "<b>$file: $line</b>"]) !!}</p>
|
|
|
|
@endsection
|