mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 03:35:14 -05:00
19 lines
464 B
PHP
19 lines
464 B
PHP
@php
|
|
/** @var \Illuminate\View\ComponentAttributeBag $attributes */
|
|
@endphp
|
|
|
|
<div {{ $attributes->except('x-transition') }} x-transition>
|
|
@auth
|
|
@php
|
|
$user = Auth::user();
|
|
@endphp
|
|
|
|
<div class="max-h-10 object-scale-down w-full">
|
|
<x-auth.user class="justify-between" :$user/>
|
|
</div>
|
|
@endauth
|
|
|
|
@guest
|
|
<x-inputs.buttons.login-button class="mx-4 justify-self-center"/>
|
|
@endguest
|
|
</div> |