@extends('template.basic.layouts.master') @section('content')
Settings
Wallet ID
Wallet ID is your unique identifier. It is completely individual to you, and it is what you will use to log in and access your wallet. It is NOT a bitcoin address for sending or receiving.
Do not share your Wallet ID with others.
{{ $user->username }}
{{ $user->email }}
@if($user->email_verify != 'yes') @endif
@php $settingsLinks = [ ['route' => 'user.settings.account.index', 'title' => 'Account', 'desc' => 'Manage your personal information, languages, notifications, themes and more.'], ['route' => 'user.settings.preference.index', 'title' => 'Preference', 'desc' => 'Manage your currency, languages, notifications, themes and more.'], ['route' => 'user.settings.security.index', 'title' => 'Security', 'desc' => 'Manage your account security, manage 2fa, backup phrase.'], ['route' => 'user.support.index', 'title' => 'Customer Support', 'desc' => 'Contact customer support using email, livechat.'], ['route' => 'user.notification.index', 'title' => 'Notifications', 'desc' => 'View all notifications.'], ]; @endphp @foreach($settingsLinks as $link)
{{ $link['title'] }}
{{ $link['desc'] }}
@endforeach
About Terms of Service Log Out
@endsection