@extends('emails.layouts.base') @section('content')
{{ __('Hello Admin,') }}
{{ __('A user account has been permanently deleted from the system.') }}
@include('emails.partials.details-box', [ 'title' => __('Deleted User'), 'details' => [ __('Name') => $userName, __('Email') => $userEmail, __('Deleted At') => $deletedAt ], 'primaryColor' => $primaryColor ]){{ __('This deletion was processed automatically after the grace period expired. All associated user data has been removed in compliance with data protection requirements.') }}
@endsection