retrofairie/resources/views/layouts/navigation.blade.php

25 lines
485 B
PHP
Raw Normal View History

2025-02-21 04:44:06 +00:00
<nav>
2025-02-21 01:43:36 +00:00
<!-- Primary Navigation Menu -->
<div>
<!-- Logo -->
2025-02-21 04:44:06 +00:00
<a href="{{ route('admin') }}">
2025-02-21 01:43:36 +00:00
<x-application-logo class="w-20" />
</a>
<!-- Navigation Links -->
2025-02-21 04:44:06 +00:00
<a href="{{ route('admin') }}">Admin</a>
2025-02-21 01:43:36 +00:00
<!-- Profile -->
<a href="{{ route('profile.edit') }}">
{{ Auth::user()->name }}
</a>
<!-- Log Out -->
<form method="POST" action="{{ route('logout') }}">
@csrf
<button>Log Out</button>
</form>
</div>
2025-02-19 01:51:40 +00:00
</nav>