@section('title', __("Personal Information"))
{{ __('Personal Information') }}

{{ __('Basic info, like your name and address, that you use on Nio Platform.') }}

{{ __('Full Name') }} {{ $user->name ?? '' }}
{{ __('Date of Birth') }} {!! ($user->meta('profile_dob')) ? show_date($user->meta('profile_dob'), false, false) : ''.__('Not updated yet').'' !!}
{{ __('Display Name') }} {!! ($user->meta('profile_display_name')) ? $user->meta('profile_display_name') : ''.__('Not updated yet').'' !!}
{{ __('Mobile Number') }} {!! ($user->meta('profile_phone')) ? $user->meta('profile_phone') : ''.__('Not updated yet').'' !!}
{{ __('Email Address') }} {{ str_protect($user->email) }}
{{ __('Additional Information') }}
{{ __('Join Date') }} {{ show_date($user->created_at) }}
@if($user->meta('email_verified'))
{{ __('Email Verified At') }} {{ show_date($user->meta('email_verified'), true) }}
@endif @if($user->meta('registration_method'))
{{ __('Reg Method') }} {{ __("By :Method", ['method' => ucfirst($user->meta('registration_method'))]) }}
@endif @if($user->meta('setting_activity_log'))
{{ __('Save Activity Logs') }} {{ ($user->meta('setting_unusual_activity')=='on') ? __("Enabled") : __("Disabled") }}
@endif @if($user->meta('setting_unusual_activity'))
{{ __('Email Unusual Activity') }} {{ ($user->meta('setting_unusual_activity')=='on') ? __("Enabled") : __("Disabled") }}
@endif
{{ __('Country') }} {!! ($user->meta('profile_country')) ? ucfirst($user->meta('profile_country')) : ''.__('Not updated yet').'' !!}