mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-05 20:19:39 +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 :)
14 lines
562 B
PHP
14 lines
562 B
PHP
@extends('auth.layouts')
|
|
@section('title', trans('common.active_item', ['attribute' => trans('common.account')]))
|
|
@section('content')
|
|
@if (Session::has('errorMsg'))
|
|
<x-alert type="danger" :message="Session::pull('errorMsg')" />
|
|
@endif
|
|
@if (Session::has('successMsg'))
|
|
<x-alert :message="Session::pull('successMsg')" />
|
|
@endif
|
|
<form action="{{ url(Request::getRequestUri()) }}" method="post">
|
|
<a class="btn btn-lg btn-block btn-success" href="{{ route('login') }}">{{ trans('auth.login') }}</a>
|
|
</form>
|
|
@endsection
|