Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model frontend\models\Contact */
- $this->title = 'Create Contact';
- $this->params['breadcrumbs'][] = ['label' => 'Contacts', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="contact-create">
- <h1><?= Html::encode($this->title) ?></h1>
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement