123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <nav x-data="{ open: false }" class="bg-white border-b border-gray-100">
- <!-- Primary Navigation Menu -->
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
- <div class="flex justify-between h-16">
- <div class="flex">
- <!-- Logo -->
- <!-- <div class="flex-shrink-0 flex items-center">
- <a href="{{ route('dashboard') }}">
- <x-jet-application-mark class="block h-9 w-auto" />
- </a>
- </div> -->
- <!-- Settings Dropdown -->
- <div class="hidden sm:flex sm:items-center sm:ml-6">
-
- <!-- Authentication -->
- <form method="POST" class="logout" action="{{ route('logout') }}" align="right">
- @csrf
- <x-jet-dropdown-link class="link" href="{{ route('logout') }}"
- onclick="event.preventDefault();
- this.closest('form').submit();">
- {{ __('Logout') }}
- </x-jet-dropdown-link>
- </form>
- </div>
- <!-- Hamburger -->
- <div class="-mr-2 flex items-center sm:hidden">
- </div>
- </div>
- <!-- Responsive Navigation Menu -->
- <!-- Responsive Settings Options -->
- <!-- Authentication -->
- </form>
- </div>
- </div>
- </div>
- </nav>
|