<?php $listData = ArrayHelper::map(\backend\models\Category::find()->all(), 'id', 'name'); ?>
<?= $form->field($aticleCategory, 'category_id')->dropDownList(
$listData,
[
'prompt' => 'Select...',
'multiple' => 'true',
'options' => array(1=>array('selected'=>'selected'))
]
)->label(''); ?>