@extends('user.layouts.master') @section('title', __('Profile Info')) @section('content')

{{ __('Profile Info') }}

{{ __('You have full control to manage your own account setting.') }}

@if(session('email-sent'))
{{ 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']) !!}

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

{{-- .nk-block-head --}}
{{ __('Full Name') }} {{ auth()->user()->name }}
{{ __('Display Name') }} {{ $metas['profile_display_name'] ?? '' }}
{{ __('Email') }} {{ auth()->user()->email }}
{{ __('Phone Number') }} {{ $metas['profile_phone'] ?? __('Not added yet') }}
{{ __('Telegram') }} {{ empty($metas['profile_telegram']) ? __('Not added yet') : "@".$metas['profile_telegram'] }}
{{ __('Gender') }} {{ !empty(data_get($metas, 'profile_gender')) ? __(ucfirst($metas['profile_gender'])) : __('Not added yet') }}
{{ __('Date of Birth') }} {{ !empty(data_get($metas, 'profile_dob')) ? show_dob(data_get($metas, 'profile_dob')) : __('Not added yet') }}
@if(!empty($metas['profile_nationality']) && $metas['profile_nationality'] != 'same')
{{ __('Nationality') }} {{ $metas['profile_nationality'] ?? '' }}
@endif
{{ __('Country') }} {{ empty($metas['profile_country']) ? __('Not added yet') : $metas['profile_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') }}
@endsection @push('modal') {{-- Profile Edit Modal --}} {{-- Change Unverified Email Modal --}} {{-- Send Verification Link for Unverified Email --}} @endpush @push('scripts') @endpush