2023-03-24 13:54:17 +00:00
|
|
|
<nav>
|
|
|
|
@guest
|
|
|
|
<a href="/login">Login</a>
|
|
|
|
<a href="/register">Register</a>
|
|
|
|
@endguest
|
|
|
|
@auth
|
2023-03-27 08:44:31 +00:00
|
|
|
<a href="/">Home</a>
|
2023-03-24 13:54:17 +00:00
|
|
|
<a href="/demo">Demo</a>
|
|
|
|
<a href="/profile">Profile</a>
|
|
|
|
<form action="/logout" method="POST">
|
|
|
|
@csrf
|
|
|
|
<button type="submit">Logout</button>
|
|
|
|
</form>
|
|
|
|
@endauth
|
2023-03-20 12:04:22 +00:00
|
|
|
</nav>
|