@if ($user && $is_active && $user->user_type != null)
{{-- Top Navigation --}} {{-- Profile Layouts --}} @if ($profile_layout == 'default_cover') {{ $user->firstname . ' ' . $user->lastname }} {{ $user->firstname . ' ' . $user->lastname }} @elseif ($profile_layout == 'cover_only') {{ $user->firstname . ' ' . $user->lastname }} @elseif ($profile_layout == 'default') {{ $user->firstname . ' ' . $user->lastname }} @elseif ($profile_layout == 'rounded') {{ $user->firstname . ' ' . $user->lastname }} @elseif ($profile_layout == 'full_width') {{ $user->firstname . ' ' . $user->lastname }} @endif {{-- Display Full Name --}}

{{ isset($card_title) ? $card_title : $firstname . ' ' . $lastname }} @if ($user->user_type == 'Gold') {{-- --}} @elseif($user->user_type == 'Platinum') @endif

@if ($username_enabled == true)

{{ '@' . $user->username }}

@endif {{-- Display Bio --}} @if ($bio && $short_bio_enabled == true)

{{ $bio }}

@endif {{-- Display Job Title --}} @if (!empty($user->job_title) && empty($user->company))

{{ $user->job_title }}

@endif {{-- Display Job Title and company --}} @if (!empty($user->job_title) && !empty($user->company))

{{ $user->job_title }} @if (!empty($user->company_website)) at {{ $user->company }} @else at {{ $user->company }} @endif

@endif @if (($user->address || $user->country) && $display_country)

@endif {{--
--}}
@if ($payments) @foreach ($payments as $button) @php $type = $button['type']; @endphp @if ($type === 'zelle')    {{ $button['title'] }} @continue @endif {{-- APPLE PAY --}} @if ($type === 'apple_pay')    {{ $button['title'] }} @continue @endif {{-- PAYPAL EMAIL --}} @if ($type === 'paypal_email')    {{ $button['title'] }} @continue @endif {{-- FALLBACK BUTTON (for all other types) --}} @endforeach @endif
@else

User not found.

@endif