+ //Add extra city field
+ if (!empty($options['city'])) {
+ $form->add('city', TextType::class, ['attr' => ['placeholder' => 'Your city'], 'required' => false]);
+ }
+
+ //Add extra country field
+ if (!empty($options['country'])) {
+ //Add country field
+ $form->add('country', EntityType::class, ['class' => $options['country_class'], 'choice_label' => 'title'/*, 'choices' => $options['location_choices']*/, 'preferred_choices' => $options['country_favorites'], 'attr' => ['placeholder' => 'Your country'], 'choice_translation_domain' => false, 'required' => true, 'data' => $options['country_default']]);
+ }
+