You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
527 B

7 years ago
<?php
/* @var $this yii\web\View */
/* @var $model \core\forms\SliderForm */
/* @var $slider \core\entities\Slider */
$this->title = Yii::t('slider', 'Update Slide');
$this->params['breadcrumbs'][] = ['label' => Yii::t('slider', 'Slider'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $slider->title, 'url' => ['view', 'id' => $slider->id]];
$this->params['breadcrumbs'][] = Yii::t('buttons', 'Editing');
?>
<div class="slider-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>