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_key')
                  ->textInput();
        
        echo Html::submitButton(
            'Save',
            [
                'class' => 'btn btn-primary',
            ]
        );
        ActiveForm::end();
    ?>