21 lines
414 B
PHP
Executable File
21 lines
414 B
PHP
Executable File
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\company\models\Company */
|
|
|
|
$this->title = 'Создать компанию';
|
|
$this->params['breadcrumbs'][] = ['label' => 'Компании', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="company-create">
|
|
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|