= $form->field($model, 'title')->textInput(['maxlength' => true]) ?>
= $form->field($model, 'slug')->hint('谨慎修改,需和小程序端保持一致')->textInput(['maxlength' => true]) ?>
= $form->field($model, 'content')->widget(\common\widgets\EditorWidget::className(), $model->isNewRecord ? ['type' => request('editor') ?: config('page_editor_type')] : ['isMarkdown' => $model->markdown]) ?>
= Html::submitButton($model->isNewRecord ? '创建' : '更新', ['class' => 'btn btn-flat bg-maroon btn-block']) ?>