Newer
Older

Yassine Doghri
committed
<?= $this->extend('admin/_layout') ?>
<?= $this->section('title') ?>
<?= lang('Podcast.edit') ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<?= form_open_multipart(route_to('podcast-edit', $podcast->id), [
'method' => 'post',
'class' => 'flex flex-col max-w-md',
]) ?>
<?= csrf_field() ?>
<?= form_label(lang('Podcast.form.image'), 'image') ?>
<img
src="<?= $podcast->image->thumbnail_url ?>"
alt="<?= $podcast->title ?>"
class="object-cover w-32 h-32"
/>
<?= form_input([
'id' => 'image',
'name' => 'image',
'class' => 'form-input',
'type' => 'file',
'accept' => '.jpg,.jpeg,.png',
]) ?>
<small class="mb-4 text-gray-600"><?= lang(
'Common.forms.image_size_hint'
) ?></small>
<?= form_label(lang('Podcast.form.title'), 'title') ?>
<?= form_input([
'id' => 'title',
'name' => 'title',
'class' => 'form-input mb-4',
'value' => old('title', $podcast->title),
'required' => 'required',
]) ?>
<?= form_label(lang('Podcast.form.name'), 'name') ?>
<?= form_input([
'id' => 'name',
'name' => 'name',
'class' => 'form-input mb-4',
'value' => old('name', $podcast->name),
'required' => 'required',
]) ?>
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<div class="mb-4">
<?= form_label(lang('Podcast.form.description'), 'description') ?>
<?= form_textarea(
[
'id' => 'description',
'name' => 'description',
'class' => 'form-textarea',
'required' => 'required',
],
old('description', $podcast->description, false),
'data-editor="markdown"'
) ?>
</div>
<div class="mb-4">
<?= form_label(
lang('Podcast.form.episode_description_footer'),
'episode_description_footer'
) ?>
<?= form_textarea(
[
'id' => 'episode_description_footer',
'name' => 'episode_description_footer',
'class' => 'form-textarea',
],
old(
'episode_description_footer',
$podcast->episode_description_footer,
false
),
'data-editor="markdown"'
) ?>
</div>
<?= form_label(lang('Podcast.form.language'), 'language') ?>
<?= form_dropdown(
'language',
$languageOptions,
old('language', $podcast->language),
[
'id' => 'language',
'class' => 'form-select mb-4',
'required' => 'required',
]
<?= form_label(lang('Podcast.form.category'), 'category') ?>
<?= form_dropdown(
'category',
$categoryOptions,
old('category', $podcast->category_id),
[
'id' => 'category',
'class' => 'form-select mb-4',
'required' => 'required',
]
) ?>
<label class="inline-flex items-center mb-4">
<?= form_checkbox(
['id' => 'explicit', 'name' => 'explicit', 'class' => 'form-checkbox'],
'yes',
old('explicit', $podcast->explicit)
) ?>
<span class="ml-2"><?= lang('Podcast.form.explicit') ?></span>
</label>
<?= form_label(lang('Podcast.form.owner_name'), 'owner_name') ?>
<?= form_input([
'id' => 'owner_name',
'name' => 'owner_name',
'class' => 'form-input mb-4',
'value' => old('owner_name', $podcast->owner_name),

Yassine Doghri
committed
'required' => 'required',
<?= form_label(lang('Podcast.form.owner_email'), 'owner_email') ?>
<?= form_input([
'id' => 'owner_email',
'name' => 'owner_email',
'class' => 'form-input mb-4',
'value' => old('owner_email', $podcast->owner_email),
'type' => 'email',
'required' => 'required',
]) ?>

Yassine Doghri
committed
<?= form_label(lang('Podcast.form.author'), 'author') ?>
<?= form_input([
'id' => 'author',
'name' => 'author',
'class' => 'form-input mb-4',
'value' => old('author', $podcast->author),
]) ?>
<?= form_fieldset('', ['class' => 'flex flex-col mb-4']) ?>
<legend><?= lang('Podcast.form.type.label') ?></legend>
<label for="episodic" class="inline-flex items-center">
<?= form_radio(
['id' => 'episodic', 'name' => 'type', 'class' => 'form-radio'],
'episodic',
old('type')
? old('type') == 'episodic'
: $podcast->type == 'episodic'
) ?>
<span class="ml-2"><?= lang('Podcast.form.type.episodic') ?></span>
</label>
<label for="serial" class="inline-flex items-center">
<?= form_radio(
['id' => 'serial', 'name' => 'type', 'class' => 'form-radio'],
'serial',
old('type') ? old('type') == 'serial' : $podcast->type == 'serial'
) ?>
<span class="ml-2"><?= lang('Podcast.form.type.serial') ?></span>
<?= form_fieldset_close() ?>
<?= form_label(lang('Podcast.form.copyright'), 'copyright') ?>
<?= form_input([
'id' => 'copyright',
'name' => 'copyright',
'class' => 'form-input mb-4',
'value' => old('copyright', $podcast->copyright),
]) ?>
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<label class="inline-flex items-center mb-4">
<?= form_checkbox(
['id' => 'block', 'name' => 'block', 'class' => 'form-checkbox'],
'yes',
old('block', $podcast->block)
) ?>
<span class="ml-2"><?= lang('Podcast.form.block') ?></span>
</label>
<label class="inline-flex items-center mb-4">
<?= form_checkbox(
['id' => 'complete', 'name' => 'complete', 'class' => 'form-checkbox'],
'yes',
old('complete', $podcast->complete)
) ?>
<span class="ml-2"><?= lang('Podcast.form.complete') ?></span>
</label>
<div class="mb-4">
<?= form_label(lang('Podcast.form.custom_html_head'), 'custom_html_head') ?>
<?= form_textarea(
[
'id' => 'custom_html_head',
'name' => 'custom_html_head',
'class' => 'form-textarea',
],
old('custom_html_head', $podcast->custom_html_head, false),
'data-editor="html"'
) ?>
</div>
<?= form_button([
'content' => lang('Podcast.form.submit_edit'),
'type' => 'submit',
'class' => 'self-end px-4 py-2 bg-gray-200',
]) ?>
<?= form_close() ?>
<?= $this->endSection() ?>