field($model, 'name')->textInput(['maxlength' => true]) ?> field($model, 'info')->textarea(['rows' => 6]) ?> field($model, 'city_id')->dropDownList(\yii\helpers\ArrayHelper::map($cities, 'id', 'name'), ['prompt' => 'Выберие город']) ?> field($model, 'coords')->textInput(['maxlength' => true]) ?> field($model, 'phones')->textInput(['maxlength' => true]) ?> field($model, 'address')->textInput(['maxlength' => true]) ?> field($model, 'email')->textInput(['maxlength' => true]) ?> field($model, 'skype')->textInput(['maxlength' => true]) ?>
isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>