Cambios en vista de dashboard y blade, agregados logos de la bicicleteria

This commit is contained in:
Bryam105
2025-12-04 08:15:11 -03:30
parent f32205231f
commit 39eff03bc2
5 changed files with 24 additions and 19 deletions
+11 -6
View File
@@ -1,8 +1,13 @@
<x-appc>
<H1>BIENVENIDO {{ Auth::user()->name }} </H1>
<a href="{{ route('catalogo') }}">Ir a catalogo</a>
<form action="{{ route('logout') }}" method="post">
@csrf
<button type="submit">Logout</button>
</form>
<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>