9 lines
253 B
PHP
9 lines
253 B
PHP
<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-appc>
|