@if($user->bio)
@if(getSetting('profiles.allow_profile_bio_markdown'))
{!! GenericHelper::parseProfileMarkdownBio($user->bio) !!}
@else
{!!GenericHelper::parseSafeHTML($user->bio)!!}
@endif
@else
{{__('No description available.')}}
@endif
@if($user->bio && !getSetting('profiles.disable_profile_bio_excerpt'))
{{__('More info')}}
{{__('Show less')}}
@endif
@if(getSetting('profiles.social_links_enabled'))
@include('elements.profile.profile-social-links', [
'items' => $profileSocialLinks
])
@endif
@if(!empty($storiesEnabled) && !empty($allowHighlights) && !empty($hasHighlights))
@include('elements.icon',['icon'=>'calendar-clear-outline','centered'=>false,'classes'=>'mr-1'])
{{ucfirst($user->created_at->translatedFormat('F d'))}}
@if($user->location)
@include('elements.icon',['icon'=>'location-outline','centered'=>false,'classes'=>'mr-1'])
{{$user->location}}
@endif
@if(!getSetting('profiles.disable_website_link_on_profile'))
@if($user->website)
@include('elements.icon',['icon'=>'globe-outline','centered'=>false,'classes'=>'mr-1'])
@endif
@endif
@if(getSetting('profiles.allow_gender_pronouns'))
@if($user->gender_pronoun)
@include('elements.icon',['icon'=>'male-female-outline','centered'=>false,'classes'=>'mr-1'])
{{$user->gender_pronoun}}
@endif
@endif