15 lines
313 B
PHP
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> |