mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?= $this->extend('_layout') ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('Person.edit') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<form action="<?= route_to('person-edit', $person->id) ?>" method="POST" class="flex flex-col max-w-sm gap-y-4" enctype="multipart/form-data">
|
|
<?= csrf_field() ?>
|
|
|
|
<x-Forms.Field
|
|
name="avatar"
|
|
label="<?= esc(lang('Person.form.avatar')) ?>"
|
|
helper="<?= esc(lang('Person.form.avatar_size_hint')) ?>"
|
|
type="file"
|
|
accept=".jpg,.jpeg,.png" />
|
|
|
|
<x-Forms.Field
|
|
name="full_name"
|
|
value="<?= esc($person->full_name) ?>"
|
|
label="<?= esc(lang('Person.form.full_name')) ?>"
|
|
hint="<?= esc(lang('Person.form.full_name_hint')) ?>"
|
|
isRequired="true"
|
|
data-slugify="title" />
|
|
|
|
<x-Forms.Field
|
|
name="unique_name"
|
|
value="<?= esc($person->unique_name) ?>"
|
|
label="<?= esc(lang('Person.form.unique_name')) ?>"
|
|
hint="<?= esc(lang('Person.form.unique_name_hint')) ?>"
|
|
isRequired="true"
|
|
data-slugify="slug" />
|
|
|
|
<x-Forms.Field
|
|
name="information_url"
|
|
label="<?= esc(lang('Person.form.information_url')) ?>"
|
|
hint="<?= esc(lang('Person.form.information_url_hint')) ?>"
|
|
value="<?= esc($person->information_url) ?>" />
|
|
|
|
<x-Button variant="primary" class="self-end" type="submit"><?= lang('Person.form.submit_edit') ?></x-Button>
|
|
|
|
</form>
|
|
|
|
<?= $this->endSection() ?>
|