mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-09 21:42:57 +00:00
22 lines
592 B
PHP
22 lines
592 B
PHP
<div class="wa-stack">
|
|
@guest
|
|
<a href="{{ route('login') }}" class="wa-cluster">
|
|
<wa-icon name="arrow-right-to-bracket"></wa-icon>
|
|
Sign in to {{ config('app.name') }}
|
|
</a>
|
|
@endguest
|
|
|
|
@auth
|
|
<a href="{{ url('/profiles/' . Auth::id()) }}" wire:navigate.hover>
|
|
<div class="wa-cluster wa-align-items-center">
|
|
<livewire:app.pfp :user="auth()->user()" size="2rem" shape="rounded" />
|
|
{{ Auth::user()->name }}
|
|
</div>
|
|
</a>
|
|
|
|
<a href="{{ route('logout') }}" class="wa-cluster">
|
|
<wa-icon name="arrow-left-from-bracket"></wa-icon>
|
|
Sign out
|
|
</a>
|
|
@endauth
|
|
</div>
|