@extends('core::layouts.dashboard') @section('title', 'Profile') @section('content')
{{-- Left Sidebar - User Info & Menu --}}
{{-- User Avatar --}}
@if(Auth::check() && Auth::user()->avatar) {{ Auth::user()->name }} @else
{{ Auth::check() ? strtoupper(substr(Auth::user()->name, 0, 1)) : 'G' }}
@endif
{{-- User Info --}} {{-- Profile Menu --}}
{{-- Right Content Area --}}
{{-- Tab 1: Setting Profil --}}

INFORMASI PROFIL

@csrf @method('PUT') {{-- Nama --}}
{{-- Email & Phone --}}
{{-- Country & City --}}
{{-- Postal Code & Address --}}
{{-- Buttons --}}
{{-- Tab 2: Kata Sandi dan Keamanan --}}
{{-- Main Security Menu --}}

KATA SANDI DAN KEAMANAN

{{-- Change Password Form --}} {{-- 2FA Settings --}}
{{-- Tab 3: Setting Wallet --}}

SETTING WALLET

{{-- Connected Wallet --}}
@php $connectedWallet = Auth::user()->preferred_wallet ?? 'indodax'; $walletLogos = [ 'indodax' => asset('assets/images/wallets/indodax.png'), 'metamask' => asset('assets/images/wallets/metamask.png'), 'trustwallet' => asset('assets/images/wallets/trustwallet.png'), 'coinbase' => asset('assets/images/wallets/coinbase.png'), 'phantom' => asset('assets/images/wallets/phantom.png'), ]; $walletNames = [ 'indodax' => 'Indodax', 'metamask' => 'Metamask', 'trustwallet' => 'Trust Wallet', 'coinbase' => 'Coinbase', 'phantom' => 'Phantom', ]; @endphp @if($connectedWallet)
{{ $walletNames[$connectedWallet] ?? ucfirst($connectedWallet) }}
@endif
{{-- Other Wallets --}}
{{-- Add Wallet Modal --}} @endsection @push('styles') @endpush @push('scripts') @endpush