21 lines
414 B
PHP
Raw Normal View History

2018-10-11 17:24:47 +03:00
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\company\models\Company */
2018-11-05 12:45:21 +03:00
$this->title = 'Создать компанию';
$this->params['breadcrumbs'][] = ['label' => 'Компании', 'url' => ['index']];
2018-10-11 17:24:47 +03:00
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="company-create">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>