2021-08-23 11:05:16 +00:00
|
|
|
<?= $this->extend('Modules\Admin\Views\_layout') ?>
|
2020-07-16 10:08:23 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('Contributor.add_contributor', [$podcast->title]) ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('Contributor.add_contributor', [$podcast->title]) ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
2020-08-14 18:27:57 +00:00
|
|
|
|
|
|
|
<?= form_open(route_to('contributor-add', $podcast->id), [
|
|
|
|
'class' => 'flex flex-col max-w-sm',
|
|
|
|
]) ?>
|
|
|
|
<?= csrf_field() ?>
|
2021-08-27 10:58:22 +00:00
|
|
|
|
|
|
|
<Forms.Label for="user"><?= lang('Contributor.form.user') ?></Forms.Label>
|
2021-07-29 09:41:36 +00:00
|
|
|
<?= form_dropdown('user', $userOptions, [old('user', '')], [
|
2020-08-14 18:27:57 +00:00
|
|
|
'id' => 'user',
|
|
|
|
'class' => 'form-select mb-4',
|
|
|
|
'required' => 'required',
|
2021-05-28 07:56:06 +00:00
|
|
|
'placeholder' => lang('Contributor.form.user_placeholder')
|
2020-08-14 18:27:57 +00:00
|
|
|
]) ?>
|
|
|
|
|
2021-08-27 10:58:22 +00:00
|
|
|
<Forms.Label for="role"><?= lang('Contributor.form.role') ?></Forms.Label>
|
2021-07-29 09:41:36 +00:00
|
|
|
<?= form_dropdown('role', $roleOptions, [old('role', '')], [
|
2020-08-14 18:27:57 +00:00
|
|
|
'id' => 'role',
|
|
|
|
'class' => 'form-select mb-4',
|
|
|
|
'required' => 'required',
|
2021-05-28 07:56:06 +00:00
|
|
|
'placeholder' => lang('Contributor.form.role_placeholder')
|
2020-08-14 18:27:57 +00:00
|
|
|
]) ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= button(
|
|
|
|
lang('Contributor.form.submit_add'),
|
2021-05-06 14:00:48 +00:00
|
|
|
'',
|
2020-10-02 15:38:16 +00:00
|
|
|
['variant' => 'primary'],
|
2021-05-06 14:00:48 +00:00
|
|
|
['type' => 'submit', 'class' => 'self-end'],
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
2020-08-14 18:27:57 +00:00
|
|
|
|
|
|
|
<?= form_close() ?>
|
2020-07-16 10:08:23 +00:00
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|