mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-14 08:23:27 +00:00
- Optimize Blade JavaScript code. - Refactored multiple admin controllers for improved validation, error handling, and query efficiency. - Added ProxyConfig trait to centralize proxy configuration options. - Updated NodeStatusDetection to use model relationships for heartbeat checks. - Improved category, label, and country management logic and error logging. - Added new Blade components for admin UI and updated language files and assets for better localization and frontend support. - Bug fixed & introduced more bug :)
20 lines
741 B
PHP
20 lines
741 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>
|
|
<div class="error-advise">
|
|
{!! $message !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|