neonail-database/public/logout-test.blade.php
2025-08-10 18:09:07 +02:00

15 lines
313 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>Logout Test</title>
<meta charset="utf-8">
</head>
<body>
<h1>Logout Test</h1>
<form action="{{ route("logout") }}" method="POST">
@csrf
<button type="submit">Abmelden</button>
</form>
<p>Route: {{ route("logout") }}</p>
</body>
</html>