@if ($ban->is_termination || $ban->is_poison_ban)

{{ __('Account Deleted') }}

@elseif ($ban->is_warning)

{{ __('Warning') }}

@else

{{ __('Banned for :duration', ['duration' => $ban->duration]) }}

@endif

{!! __('Our content monitors have determined that your behavior at :project has been in violation of our Terms of Service.', ['project' => config('app.name'), 'link' => route('document', 'tos')]) !!}

{!! __('Reviewed: :time', ['time' => e($ban->reviewed)]) !!}

{!! __('Moderator Note: :note', ['note' => e($ban->moderator_note)]) !!}

@if (!is_null($ban->offensive_item))
{{ __('Offensive Item:') }}
@parsedown($ban->offensive_item)
@endisset

@if ($ban->expired) {!! __('You may re-activate your account by agreeing to our Terms of Service.', ['link' => route('document', 'tos')]) !!} @else @if ($ban->is_termination) {{ __('Your account has been terminated.') }} @elseif ($ban->is_poison_ban) {{ __('Your account has been terminated, and account creation has been disabled.') }} @else {{ __('Your account has been disabled for :duration. You may reactivate it after :reactivation.', ['duration' => e($ban->duration), 'reactivation' => e($ban->reactivation_date)]) }} @endif @endif

@if (!$ban->expired && $ban->is_appealable)

{!! __('If you wish to appeal, please send an email to :email.', ['email' => getInboxAddress(), 'mailto' => 'mailto:' . getInboxAddress()]) !!}

@endif
@if ($ban->expired)
@csrf