2024-12-17 15:11:45 +00:00

34 lines
1.1 KiB
PHP

<?= $this->extend('_layout') ?>
<?= $this->section('pageTitle') ?>
<?= lang('Subscription.suspend') ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<form action="<?= route_to('subscription-suspend', $podcast->id, $subscription->id) ?>" method="POST" class="flex flex-col w-full max-w-xl mx-auto">
<?= csrf_field() ?>
<x-Alert variant="warning" class="font-semibold"><?= lang('Subscription.suspend_form.disclaimer', [
'email' => $subscription->email,
]) ?></x-Alert>
<x-Forms.Field
as="Textarea"
name="reason"
label="<?= esc(lang('Subscription.suspend_form.reason')) ?>"
placeholder="<?= lang('Subscription.suspend_form.reason_placeholder') ?>"
rows="4"
class="mt-4"
/>
<div class="flex items-center self-end mt-4 gap-x-2">
<x-Button uri="<?= route_to('subscription-list', $podcast->id) ?>"><?= lang('Common.cancel') ?></x-Button>
<?php // @icon("pause-fill")?>
<x-Button type="submit" variant="warning" iconLeft="pause-fill"><?= lang('Subscription.suspend_form.submit') ?></x-Button>
</div>
</form>
<?= $this->endSection() ?>