{{-- User Profile --}}
{{ __('Profile Info') }}
@if(!empty($user_details->image)) @if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ __('profile') }} @else {{ __('profile') }} @endif @else {{ __('profile') }} @endif
@if($user_details->hourly_rate) @endif @if(!moduleExists('CoinPaymentGateway')) @endif
{{ __('Type') }} {{ $user_details->user_type == 1 ? __('Client') : __('Freelancer') }}
{{ __('Full Name') }} {{ $user_details->first_name.' '.$user_details->last_name }}
{{ __('Username') }} {{ $user_details->username ?? '—' }}
{{ __('Email') }} {{ $user_details->email ?? '—' }}
{{ __('Phone') }} {{ $user_details->phone ?? '—' }}
{{ __('Hourly Rate') }} {{ $user_details->hourly_rate }}
{{ __('Country') }} {{ optional($user_details->user_country)->country ?? '—' }}
{{ __('State') }} {{ optional($user_details->user_state)->state ?? '—' }}
{{ __('City') }} {{ optional($user_details->user_city)->city ?? '—' }}
{{-- Identity Info --}}
{{ __('Identity Info') }}
@if(!empty($user_identity_details))
@if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ __('front') }} {{ __('back') }} @else {{ __('front') }} {{ __('back') }} @endif
@if(!moduleExists('CoinPaymentGateway')) @endif
{{ __('National ID') }} {{ $user_identity_details->national_id_number ?? '—' }}
{{ __('Doc. Type') }} {{ $user_identity_details->verify_by ?? '—' }}
{{ __('Country') }} {{ optional($user_identity_details->user_country)->country ?? '—' }}
{{ __('State') }} {{ optional($user_identity_details->user_state)->state ?? '—' }}
{{ __('City') }} {{ optional($user_identity_details->user_city)->city ?? '—' }}
{{ __('Zipcode') }} {{ $user_identity_details->zipcode ?? '—' }}
{{ __('Address') }} {{ $user_identity_details->address ?? '—' }}
@else
{{ __('No identity information submitted.') }}
@endif