Cambios en vista de dashboard y blade, agregados logos de la bicicleteria
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user