@component('emails.layouts.html', ['subject' => __('Final warning: Your profile will be deleted very soon')]) {{-- Warning Banner --}}

{{ __('Final warning: Inactive profile removal') }}

{{ __('Your profile will be deleted in') }}: {{ $timeRemaining }}

{{-- Greeting --}}

{{ __('Dear') }} {{ $profile->name }},

{{-- Main message --}}

{{ __('This is our final warning. Your profile has been inactive for :days days and will be automatically deleted very soon. This is your last chance to prevent deletion.', ['days' => round($daysSinceLogin)]) }}

{{__('This measure maintains an active platform for our community and protects your privacy by removing outdated personal information.') }}

{{ __('This action is irreversible. We will permanently delete all your personal data. Your past transactions will remain visible to other users but will be fully anonymized.') }}

@if(!empty($accounts)) {{-- Account Balances Table --}}

{{ __('Your accounts') }}

@foreach($accounts as $account) @endforeach
{{ $account['name'] }} {{ $account['balanceFormatted'] }}
{{ __('Total balance') }} {{ tbFormat($totalBalance) }}
@endif {{-- Balance deletion warning --}}

{{ __('All your account balances will be permanently deleted.') }}

{{ __('Balance to be deleted') }}: {{ tbFormat($totalBalance) }}

{{-- Call to action button --}}
{{ __('Activate Profile Now') }}

{{ __('Click the button above to log in and prevent your profile from being deleted.') }}

@endcomponent