2026-01-08 14:35:14 +09:00

21 lines
576 B
PHP

<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>관리자 </title>
</head>
<body style="font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; max-width: 640px; margin: 60px auto;">
<h2>관리자 </h2>
<p>
로그인 사용자: {{ auth('admin')->user()->nickname }} ({{ auth('admin')->user()->email }})
</p>
<form method="POST" action="{{ route('admin.logout') }}">
@csrf
<button type="submit">로그아웃</button>
</form>
</body>
</html>