mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
<?= $this->extend('_layout') ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('Page.edit') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<form action="<?= route_to('page-edit', $page->id) ?>" method="POST" class="flex flex-col max-w-3xl gap-y-4">
|
|
<?= csrf_field() ?>
|
|
|
|
<x-Forms.Field
|
|
name="title"
|
|
label="<?= esc(lang('Page.form.title')) ?>"
|
|
isRequired="true"
|
|
data-slugify="title"
|
|
value="<?= esc($page->title) ?>"
|
|
slot="slug-input"
|
|
class="max-w-sm" />
|
|
|
|
<x-Forms.PermalinkEditor
|
|
name="slug"
|
|
label="<?= lang('Page.form.permalink') ?>"
|
|
prefix="…/pages/"
|
|
data-slugify="slug"
|
|
permalinkBase="<?= base_url('pages') ?>"
|
|
value="<?= $page->slug ?>"
|
|
/>
|
|
|
|
<x-Forms.Field
|
|
as="MarkdownEditor"
|
|
name="content"
|
|
label="<?= esc(lang('Page.form.content')) ?>"
|
|
value="<?= esc($page->content_markdown) ?>"
|
|
isRequired="true"
|
|
rows="20" />
|
|
|
|
<x-Button variant="primary" type="submit" class="self-end"><?= lang('Page.form.submit_edit') ?></x-Button>
|
|
|
|
</form>
|
|
|
|
<?= $this->endSection() ?>
|