12 lines
466 B
PHP

<header class="flex items-center justify-between px-4 py-3">
<nav class="flex-1">
<ul class="flex justify-center space-x-4">
<li><a href="{{ route('user.index') }}">Пользователи</a></li>
</ul>
</nav>
<form method="POST" action="{{ route('logout')}}">
@csrf
<button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Выйти</button>
</form>
</header>