{!! $user->description ? format_text($user->description) : 'لم يكتب نبذة بعد' !!}
@php
$videoId = $user->getYouTubeVideoId();
@endphp
@if($videoId)
@if($user->isFreelancer())
@lang('front.completed_projects') :
{{$completed_projects}}
@lang('front.running_projects') :
{{$running_projects ?? 0}}
@lang('front.project_completion_rate') : {{$project_completion_rate}}%
@lang('front.delivery_rate') :
{{$delivery_rate}}%
@else
حالة الدفع :
@if($user->payment_verified)
موثوقة
@else
لم يتم توثيق الدفع بعد
@endif
المشاريع المستلمة :
{{ $user->totalProjects() }}
معدل التوظيف :
{{$user->hiringRate()}} %
@endif
{{-- Email Verification --}}
@if($user->email_verified_at)
توثيق البريد الإلكتروني
@else
@if(auth()->check() && auth()->id() == $user->id)
توثيق البريد الإلكتروني
@else
توثيق البريد الإلكتروني
@endif
@endif
{{-- Profile Completion (commented out - moved to sidebar checklist)
@php
$completionCheck = getUserProfileCompletionStatus($user);
$profile_complete = !$completionCheck['is_incomplete'];
$missingItems = $completionCheck['missing_items'];
$only_work_missing = count($missingItems) === 1 && in_array('work', $missingItems);
$only_project_missing = count($missingItems) === 1 && in_array('project', $missingItems);
@endphp
@if($profile_complete)
حسابه مكتمل
@else
@if(auth()->check() && auth()->id() == $user->id)
حسابه مكتمل
@else
حسابه مكتمل
@endif
@endif
--}}
{{-- Payment Method Verification --}}
@if(!$user->isFreelancer())
@endif
{{-- Phone Verification (Freelancer only) --}}
@if($user->isFreelancer())
{{-- Identity Verification (Freelancer only) --}}
@endif
@if($user->isFreelancer())
@include('front.freelancer._badges_section', ['user' => $user, 'badgeProgress' => $badgeProgress ?? []])
@endif
@lang('Average Reply') : {{$user->averageChatResponseTime()}}
@lang('Last Login') : {{$user->lastLogin()}}
@lang('Member Since') : {{\Carbon\Carbon::parse($user->created_at)->translatedFormat('d F Y')}}