{!! Form::label('id', 'Id :') !!}

{{ $user->id }}

{!! Form::label('name', 'Name :') !!}

{{ $user->name ??'N/A'}}

{!! Form::label('email', 'Email :') !!}

{{ $email }}

{!! Form::label('country', 'Country :') !!}

{{ $user->country ??'N/A'}}

{!! Form::label('state', 'State :') !!}

{{ $user->state ??'N/A'}}

{!! Form::label('city', 'City :') !!}

{{ $user->city??'N/A' }}

{!! Form::label('latitude', 'Latitude :') !!}

{{ $user->latitude }}

{!! Form::label('longitude', 'Longitude :') !!}

{{ $user->longitude }}

{!! Form::label('date_of_birth', 'Date Of Birth :') !!}

{{ date('d-m-Y',strtotime($user->date_of_birth)) }}

{!! Form::label('age', 'Age :') !!}

{{ $user->age ??'N/A'}}

{!! Form::label('height', 'Height :') !!}

{{ !empty($user->height) ? $user->height.' CM' :'N/A' }}

{!! Form::label('position', 'Position :') !!}

{{ $position ??'N/A'}}

{!! Form::label('looking_for', 'Looking For :') !!}

{{ $interested_in ?? 'N/A'}}

{!! Form::label('gender', 'Gender :') !!}

{{ $gender ??'N/A'}}

{!! Form::label('relationship_status', 'Relationship Status :') !!}

{{ $relationshipSts ?? 'N/A' }}

@if($user->cover_image)
{!! Form::label('cover_image', 'Cover Image :') !!}
@endif @if($user->profile_image)
{!! Form::label('profile_image', 'Profile Image :') !!}
@endif
{!! Form::label('status', 'Status :') !!} @if($user->status==App\Models\User::STATUS_INACTIVE)

Inactive

@elseif($user->status==App\Models\User::STATUS_ACTIVE)

Active

@else

New

@endif
{!! Form::label('active_mode', 'Active Mode :') !!}

{{$mode}}

{!! Form::label('is_profile_complete', 'Profile Completed :') !!} @if($user->is_profile_complete==App\Models\User::IS_PROFILE_COMPLETE_NO)

No

@else

Yes

@endif
{!! Form::label('subscription', 'Subscription :') !!}

{{ $subscription }}

{!! Form::label('newsletter_subscription', 'Newsletter Subscription :') !!} @if($user->newsletter_subscription==App\Models\User::IS_NEWSLETTER_SUBSCRIPTION_NO)

No

@else

Yes

@endif
{!! Form::label('is_exclusive_special_offers', 'Exclusive Special Offer :') !!} @if($user->is_exclusive_special_offers == App\Models\User::IS_EXCLUSIVE_SPECIAL_OFFERS_YES)

Yes

@else

No

@endif
{!! Form::label('account_delete_reason', 'Account Delete Reason :') !!}

{{$user->account_delete_reason ?? 'N/A'}}

{!! Form::label('timezone', 'Timezone :') !!}

{{ $user->timezone }}

{!! Form::label('created_at', 'Created At :') !!}

{{ $user->created_at }}

{!! Form::label('updated_at', 'Updated At :') !!}

{{ $user->updated_at }}