@extends('template.coin.layouts.base') @section('title', __('Support')) @section('css') @endsection @section('content')

Profile Info

You have full control to manage your own account setting.

@if(Session::has('errmessage'))

{{Session::get('errmessage')}}

@endif @if(Session::has('sucmessage'))

{{Session::get('sucmessage')}}

@endif
Personal Information

Basic info, like your name and address, that you use on our platform.

First Name {{$user->fname}}
Last Name {{$user->lname}}
Email {{$user->email}}
Currency {{$user->user_curr()}}
Email Verified {!! get_email_verification_status($user->email_verify) !!}
@if(system_settings('kyc_verification') == 'on')
KYC Verification {!! get_verification_status($user->kyc_verify) !!}
@endif
Phone Number {{__profile_details($user->phone)}}
Gender {{__profile_details($user->gender)}}
Date of Birth {{__profile_dob($user->dob)}}
Country {{__profile_details($user->country)}}
Address {{__profile_details($user->get_address())}}
@endsection @section('modals') @endsection