';
echo $form->field($model, 'phone')
->textInput()
->hint(\Yii::t('core', 'Contact phone for website'));
echo '';
echo '
';
echo $form->field($model, 'phone2')
->textInput()
->hint(\Yii::t('core', 'Contact phone for website'));
echo '
';
echo '';
echo $form->field($model, 'email')
->textInput()
->hint(\Yii::t('core', 'Contact email for website'));
echo '
';
echo '';
echo $form->field($model, 'skype')
->textInput();
echo '
';
echo '';
echo $form->field($model, 'address')
->widget(
PlaceAutocomplete::className(),
[
'apiKey' => 'AIzaSyCMnH_8SrPve9ffQzxMab3fhkj32H9vjPU',
'options' => [
'class' => 'form-control'
]
]
);
echo '
';
echo '';
echo $form->field($model, 'lat')
->textInput();
echo '
';
echo '';
echo $form->field($model, 'lon')
->textInput();
echo '
';