@push('title', $user->username)

{{ __('My name is,') }}

{{ $user->username }}

{{ $user->motto }}

Last online: {{ date('Y-m-d', $user->last_online) }}
{{ auth()->user()->credits }} {{ __('Credits') }} {{ auth()->user()->currency('duckets') }} {{ __('Duckets') }} {{ auth()->user()->currency('diamonds') }} {{ __('Diamonds') }}
@foreach($user->badges as $badge)
@endforeach
@foreach($photos as $photo)
{{ $photo->user->username }}
@endforeach
{{ __('Rooms') }}
@forelse($user->rooms as $room)
Test
0

{{ $room->name }}

@empty

This user currently does not have any rooms

@endforelse
{{ __('Guestbook') }}
@foreach($guestbook as $post)
{{ $post->user?->username }}
{{ $post->user?->username }} @if($post->profile_id === Auth::id() || $user->id === Auth::id() || Auth::user()->rank > (int)setting('min_staff_rank'))
@method('DELETE') @csrf
@endif
{{ Str::limit($post->message, 30) }}
@endforeach
@csrf
{{ __('Post message') }}
@push('javascript') @endpush