{{ __('Profile Info') }}
{{ __('You have full control to manage your own account setting.') }}
-
@include('user.account.nav-tab')
@if(session('email-sent'))
@endif
{!! Panel::profile_alerts('verify_email', ['class' => 'alert-plain', 'type' => 'info', 'link_modal' => '#change-unverified-email', 'link_modal_verify' => '#send-verification-link']) !!}
{!! Panel::profile_alerts('profile', ['class' => 'alert-plain', 'type' => 'primary', 'link_modal' => '#profile-edit']) !!}
{!! Panel::profile_module_alert('BasicKYC', ['type' => 'info']) !!}
{{-- .nk-block-head --}}
@if(!empty($metas['profile_nationality']) && $metas['profile_nationality'] != 'same')
@endif
{{ __('Basic info, like your name and address, that you use on our platform.') }}
{{ __('Full Name') }}
{{ auth()->user()->name }}
{{ __('Display Name') }}
{{ $metas['profile_display_name'] ?? '' }}
{{ __('Email') }}
{{ auth()->user()->email }}
{{ __('Phone Number') }}
{{ __('Telegram') }}
{{ __('Gender') }}
{{ __('Date of Birth') }}
{{ __('Nationality') }}
{{ $metas['profile_nationality'] ?? '' }}
{{ __('Country') }}
{{ __('Address') }}
@php
$ctystzip = [$metas['profile_city'] ?? '', $metas['profile_state'] ?? ''];
$address = [$metas['profile_address_line_1'] ?? '', $metas['profile_address_line_2'] ?? ''];
@endphp
@if (!empty($address))
{!! join('
', $address) !!} @else {{ __('Not added yet') }} @endif @if (!empty($ctystzip))
{!! join(', ', $ctystzip) !!} @endif {{ ((!empty($metas['profile_zip']) && !empty($ctystzip)) ? '- ' : '') . data_get($metas,'profile_zip') }}
', $address) !!} @else {{ __('Not added yet') }} @endif @if (!empty($ctystzip))
{!! join(', ', $ctystzip) !!} @endif {{ ((!empty($metas['profile_zip']) && !empty($ctystzip)) ? '- ' : '') . data_get($metas,'profile_zip') }}