{{ $user->first_name }}
{{ $user->first_name }} {{ $user->last_name }}

@{{ $user->username }}

{{ $friendsCount ?? 0 }}
Friends
{{ $followersCount ?? 0 }}
Followers
{{ $followingCount ?? 0 }}
Following
@if(isset($isOwnProfile) && $isOwnProfile) Edit Profile @endif
Timeline About Friends Photos
@if($user->workspace || $user->address || $user->relationship)
Quick Info
@if($user->workspace)
Works at {{ $user->workspace }}
@endif @if($user->address)
Lives in {{ $user->address }}
@endif @if($user->relationship)
Relationship {{ ucfirst($user->relationship) }}
@endif @if($user->created_at)
Joined {{ $user->created_at->format('M Y') }}
@endif
@endif @if(isset($mutualFriendsCount) && $mutualFriendsCount > 0 && isset($isOwnProfile) && !$isOwnProfile)
Mutual Friends

You have {{ $mutualFriendsCount }} mutual friend{{ $mutualFriendsCount > 1 ? 's' : '' }} with {{ $user->first_name }}

@endif @if($user->bio)
Bio

{{ $user->bio }}

@endif