<?php

/* @var $this yii\web\View */
/* @var $model \core\forms\post\PostForm */
/* @var $type \core\entities\post\PostType */

$title = Yii::t('post', 'Add Image');
$this->title = $type->plural . ' > ' . $title;
$this->params['breadcrumbs'][] = ['label' => Yii::t('post', 'Gallery'), 'url' => ['index', 'tid' => $type->id]];
$this->params['breadcrumbs'][] = $title;
?>
<div class="post-create">

    <?= $this->render('_form', [
        'model' => $model,
    ]) ?>

</div>