mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-16 20:45:12 +00:00
41 lines
919 B
PHP
41 lines
919 B
PHP
<?= $this->extend('_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('Contributor.edit_role', [$user->username]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('Contributor.edit_role', [$user->username]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<?= form_open(route_to('contributor-edit', $podcast->id, $user->id), [
|
|
'class' => 'flex flex-col max-w-sm',
|
|
]) ?>
|
|
<?= csrf_field() ?>
|
|
|
|
<Forms.Label for="role"><?= lang('Contributor.form.role') ?></Forms.Label>
|
|
<?= form_dropdown('role', $roleOptions, [old('role', $contributorGroupId)], [
|
|
'id' => 'role',
|
|
'class' => 'form-select mb-4',
|
|
'required' => 'required',
|
|
]) ?>
|
|
|
|
<?= button(
|
|
lang('Contributor.form.submit_edit'),
|
|
'',
|
|
[
|
|
'variant' => 'primary',
|
|
],
|
|
[
|
|
'type' => 'submit',
|
|
'class' => 'self-end',
|
|
],
|
|
) ?>
|
|
|
|
<?= form_close() ?>
|
|
|
|
<?= $this->endSection() ?>
|