| 12345678910111213141516171819 | <?phpuse yii\helpers\Html;/* @var $this yii\web\View *//* @var $model common\models\ShareLevel */$this->title = Yii::t('common', 'Create Share Level');$this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Share Levels'), 'url' => ['index']];$this->params['breadcrumbs'][] = $this->title;?><div class="share-level-create">    <?= $this->render('_form', [        'model' => $model,    ]) ?></div>
 |