mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
18 lines
713 B
PHP
18 lines
713 B
PHP
@extends('_layout')
|
|
@section('title', sysConfig('website_name') . ' - ' . trans('errors.title'))
|
|
@section('layout_css')
|
|
<link href="/assets/css/errors.min.css" rel="stylesheet">
|
|
@endsection
|
|
@section('body_class', 'page-error layout-full')
|
|
@section('layout_content')
|
|
<div class="page vertical-align text-center" data-animsition-in="fade-in" data-animsition-out="fade-out">
|
|
<div class="page-content vertical-align-middle">
|
|
<header>
|
|
<h1 class="animation-slide-top">{{ trans('errors.whoops') }}</h1>
|
|
</header>
|
|
<h3>{{ trans('errors.report') }}</h3>
|
|
<code class="error-advise">{!! $message !!}</code>
|
|
</div>
|
|
</div>
|
|
@endsection
|