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