Yii2 view code style ==================== The following code style is used for Yii 2.x core and official extensions view files. We aren't forcing you to use this code style for your application. Feel free to choose what suits you better. ```php title = 'Posts'; ?>

['id' => 'contact-message-form'], 'fieldConfig' => ['inputOptions' => ['class' => 'common-input']], ]); ?> field($contactMessage, 'name')->textInput() ?> field($contactMessage, 'email')->textInput() ?> field($contactMessage, 'subject')->textInput() ?> field($contactMessage, 'body')->textArea(['rows' => 6]) ?>
'common-button']) ?>
```