mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
14 lines
577 B
PHP
14 lines
577 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 type="success" :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
|