Files
ProxyPanel/resources/views/auth/active.blade.php
BrettonYe ad3662cda0 🚀 Refactor Blade
- 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 :)
2026-01-30 20:04:17 +08:00

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