title = 'Settings';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
$this->title,
'toolbar' => false,
]
); ?>
field($model, 'id')
->textInput();
echo $form->field($model, 'name')
->textInput();
echo $form->field($model, 'description')
->textInput();
echo $form->field($model, 'analytics')
->textarea(
[
'rows' => 11,
]
);
echo Html::submitButton(
'Save',
[
'class' => 'btn btn-primary',
]
);
ActiveForm::end();
?>