@extends('layouts.app') @section('title', 'Settings') @section('content')

Settings

Manage your account settings and preferences

Account Overview

Account Status

@if($user->hasCompletedKyc()) ✅ Verified @else ⚠️ Pending Verification @endif

@if($user->hasCompletedKyc()) All features unlocked @else Complete KYC to unlock all features @endif

Security Score

{{ $user->getSecurityScore() }}/100

@if($user->getSecurityScore() >= 80) Excellent security @elseif($user->getSecurityScore() >= 60) Good security @else Consider improving security @endif

{{ $user->full_name }}

{{ $user->email }}

Edit Profile →

Phone Number

{{ $user->phone }}

{{ $user->phone_verified_at ? '✅ Verified' : '⚠️ Unverified' }}

Transaction PIN

{{ $user->transaction_pin ? 'Configured' : 'Not set' }}

{{ $user->transaction_pin ? 'Change PIN' : 'Set PIN' }} →

Two-Factor Authentication

{{ $user->two_factor_secret ? 'Enabled' : 'Disabled' }}

{{ $user->two_factor_secret ? 'Manage 2FA' : 'Enable 2FA' }} →
@endsection