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.
 
 
 
 
 

21 lines
553 B

<?php
use core\entities\Slider;
use core\forms\SliderForm;
/* @var $this yii\web\View */
/* @var $model SliderForm */
/* @var $slider 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>