@extends('emails.layouts.base') @section('content')
{{ __('Hello :name,', ['name' => $userName]) }}
{{ __('We have received your request to delete your account. Your account and all associated data will be permanently deleted on:') }}
{{ $deletionDate }}
{!! __('You have :days days to cancel this request if you change your mind.', ['days' => $graceDays]) !!}
@include('emails.partials.button', [ 'url' => $cancelUrl, 'text' => __('Cancel Account Deletion'), 'primaryColor' => $primaryColor, 'primaryForeground' => $primaryForeground ]){!! __('Warning: Once your account is deleted, this action cannot be undone. All your data including projects, subscriptions, and activity history will be permanently removed.') !!}
{{ __('If you did not request this deletion, please click the cancel button immediately and change your password.') }}
@endsection