14 lines
657 B
PHP
14 lines
657 B
PHP
<x-appc>
|
|
<x-slot name="title">Lauck - Dash</x-slot>
|
|
<div class="flex bg-gray-200 flex-col items-center justify-center gap-3 w-screen py-5">
|
|
<h1 class="font-extrabold text-3xl ">¡Bienvenido {{ Auth::user()->name }}! </h1>
|
|
<a class="font-bold border-2 rounded-2xl border-amber-300 py-1 px-2 hover:bg-amber-300 transition-all " href="{{ route('catalogo') }}">Ir a catalogo</a>
|
|
|
|
<form action="{{ route('logout') }}" method="post" >
|
|
@csrf
|
|
<button class="font-bold bg-red-300 py-1.5 px-3 hover:bg-red-700 hover:text-white transition-all" type="submit">Logout</button>
|
|
</form>
|
|
|
|
</div>
|
|
</x-appc>
|