navigation-dropdown.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <nav x-data="{ open: false }" class="bg-white border-b border-gray-100">
  2. <!-- Primary Navigation Menu -->
  3. <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
  4. <div class="flex justify-between h-16">
  5. <div class="flex">
  6. <!-- Logo -->
  7. <!-- <div class="flex-shrink-0 flex items-center">
  8. <a href="{{ route('dashboard') }}">
  9. <x-jet-application-mark class="block h-9 w-auto" />
  10. </a>
  11. </div> -->
  12. <!-- Settings Dropdown -->
  13. <div class="hidden sm:flex sm:items-center sm:ml-6">
  14. <!-- Authentication -->
  15. <form method="POST" class="logout" action="{{ route('logout') }}" align="right">
  16. @csrf
  17. <x-jet-dropdown-link class="link" href="{{ route('logout') }}"
  18. onclick="event.preventDefault();
  19. this.closest('form').submit();">
  20. {{ __('Logout') }}
  21. </x-jet-dropdown-link>
  22. </form>
  23. </div>
  24. <!-- Hamburger -->
  25. <div class="-mr-2 flex items-center sm:hidden">
  26. </div>
  27. </div>
  28. <!-- Responsive Navigation Menu -->
  29. <!-- Responsive Settings Options -->
  30. <!-- Authentication -->
  31. </form>
  32. </div>
  33. </div>
  34. </div>
  35. </nav>