movie-night-nuevo/resources/views/components/header.blade.php

19 lines
722 B
PHP
Raw Normal View History

2025-12-13 19:33:52 -06:00
<div class="text-white flex flex-col gap-5 sm:flex-row justify-between mt-5 items-center pb-5 border-b-2">
<x-ui.site-logo/>
2025-12-12 23:07:04 -06:00
@auth
<ul class="flex flex-row gap-4 font-bold text-2xl my-auto">
<li><a href="/lists" wire:navigate>Lists</a></li>
2025-12-13 19:33:52 -06:00
<!-- <li>Schedule</li> -->
2025-12-12 23:07:04 -06:00
<li>
<form method="POST" action="{{ route('logout') }}" class="inline">
@csrf
<button type="submit"
class="cursor-pointer text-inherit bg-transparent border-none p-0 font-inherit">
Logout
</button>
</form>
</li>
</ul>
@endauth
</div>