{{ $user->username }}

{{ $user->fullname }}

{{ $user->username }}


@if(strlen($user->fb_link) > 2) @endif @if(strlen($user->tw_link) > 2) @endif @if(strlen($user->blogurl) > 2) @endif


@if(auth()->check() == true) @if(auth()->user()->id == $user->id) {{ t('Edit My Profile') }} {{ t("I'm following") }} @else {{ checkFollow($user->id) ? t('Un Follow') : t('Follow Me') }} @endif
@endif

{{ $user->followers->count() }}   {{ t('Followers') }} {{ t('See all') }}

@foreach($user->followers->take(9) as $follower) {{ $follower->user->fullname }} @endforeach

{{ t('Status') }}

{{ $user->images()->sum('views') }} {{ t('Views') }}

{{ $user->images()->count() }} {{ t('Images Shared') }}

{{ $user->comments()->count() }} {{ t('Comments') }}

{{ t('Most Used Tags') }}

@foreach($mostUsedTags as $tag => $key) {{ $key }} @endforeach
@if(strlen($user->about_me) > 2)

{{ t('About Me') }}

{{ $user->about_me }}


@endif @if(strlen($user->country) == 2)

{{ t('Country') }}

{{ countryResolver($user->country) }}


@endif
@if(auth()->check() and auth()->user()->id != $user->id) {{ t('Report') }} @endif