{{-- Page header --}}

{{ __('Account Settings') }}

{{ __('Manage your account preferences and configuration.') }}

{{-- Account info --}}

{{ __('Account Information') }}

{{ __('Account ID') }}

{{ auth()->user()->id }}

{{ __('Account Created') }}

{{ auth()->user()->created_at->format('F j, Y') }}

{{ __('Email') }}

{{ auth()->user()->email ?? 'john@mailtrixy.com' }}

{{ __('Account Status') }}

{{ ucfirst(auth()->user()->status ?? 'active') }}

{{ __('Auth Provider') }}

{{ __('Email & Password') }}

{{-- Appearance (dark mode only — theme switcher removed) --}} {{-- Connected accounts --}}

{{ __('Connected Accounts') }}

@php $oauthProviders = [ ['name' => 'Google', 'connected' => false, 'bg' => 'bg-danger/10', 'text' => 'text-danger'], ['name' => 'Microsoft', 'connected' => false, 'bg' => 'bg-info/10', 'text' => 'text-blue-600'], ['name' => 'GitHub', 'connected' => false, 'bg' => 'bg-surface', 'text' => 'text-muted'], ]; @endphp @foreach($oauthProviders as $provider)
{{ substr($provider['name'], 0, 1) }}

{{ $provider['name'] }}

{{ __('Not connected') }}

{{ __('Auto-connected on login') }}
@endforeach
{{-- Danger zone --}}

{{ __('Danger Zone') }}

{{ __('These actions are permanent and cannot be undone.') }}

{{ __('Deactivate Account') }}

{{ __('Temporarily disable your account. You can reactivate later.') }}

@csrf

{{ __('Delete Account') }}

{{ __('Permanently delete your account and all associated data.') }}