Undangan/backend/resources/views/admin/dashboard.blade.php
2025-09-01 08:59:34 +07:00

15 lines
295 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>Admin Dashboard</title>
</head>
<body>
<h1>Halo, {{ Auth::guard('admin')->user()->username }}</h1>
<form method="POST" action="{{ route('admin.logout') }}">
@csrf
<button type="submit">Logout</button>
</form>
</body>
</html>