نبذة عني

{!! $user->description ? format_text($user->description) : 'لم يكتب نبذة بعد' !!}
@php $videoId = $user->getYouTubeVideoId(); @endphp @if($videoId)

فيديو تعريفي

@endif

@lang('front.statistics')

@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())
@if($user->payment_verified) توثيق وسيلة الدفع @else @if(auth()->check() && auth()->id() == $user->id) توثيق وسيلة الدفع اشحن حسابك بأي مبلغ للتوثيق @else توثيق وسيلة الدفع @endif @endif
@endif {{-- Phone Verification (Freelancer only) --}} @if($user->isFreelancer())
@if($user->phone_verified_at) توثيق رقم الجوال @else @if(auth()->check() && auth()->id() == $user->id) توثيق رقم الجوال وثّق جوالك عبر واتساب @else توثيق رقم الجوال @endif @endif
{{-- Identity Verification (Freelancer only) --}}
@if($user->identity_verified_at) توثيق الهوية @else @if(auth()->check() && auth()->id() == $user->id) توثيق الهوية وثّق هويتك لزيادة ثقة أصحاب المشاريع @else توثيق الهوية @endif @endif
@endif
@if($user->isFreelancer()) @include('front.freelancer._badges_section', ['user' => $user, 'badgeProgress' => $badgeProgress ?? []]) @endif

@lang('front.Skills')

@if($user->skills->count() > 0) @foreach($user->skills as $skill) {{$skill->name}} @endforeach @else @lang('N/A') @endif

@lang('Activity Information')

@lang('Average Reply') : {{$user->averageChatResponseTime()}}
@lang('Last Login') : {{$user->lastLogin()}}
@lang('Member Since') : {{\Carbon\Carbon::parse($user->created_at)->translatedFormat('d F Y')}}