@extends('layouts.user', ['heading' => 'Profile Settings', 'subheading' => 'Update account, security, and preferences']) @section('content') @php $themePreference = auth()->user()?->theme_preference; if (! in_array($themePreference, ['light', 'dark', 'auto'], true)) { $themePreference = auth()->user()?->dark_mode_enabled ? 'dark' : 'light'; } @endphp
Profile Information
@csrf
KYC Status
Status: {{ ucfirst($member->userKyc?->status ?? 'pending') }}
Open KYC Page
Security
@csrf
Appearance
This updates your panel theme preference.
Recent Devices
@forelse($member->devices as $device) @empty @endforelse
Device Platform IP Last Seen
{{ $device->device_name ?: 'Browser' }} {{ $device->platform ?: '-' }} {{ $device->ip_address ?: '-' }} {{ optional($device->last_seen_at)->format('d M Y H:i') ?: '-' }}
No devices tracked.
Recent Login Activity
@forelse($member->ipLogs as $log) @empty @endforelse
Action IP Time
{{ $log->action }} {{ $log->ip_address }} {{ optional($log->created_at)->format('d M Y H:i') }}
No activity found.
@endsection