fix: add placeholders for fields nationality and country

This commit is contained in:
Björn Fromme
2026-07-10 14:33:09 +02:00
parent b41b19d4c6
commit 0b2a16d117
+2
View File
@@ -52,11 +52,13 @@ class PersonalDataType extends AbstractType
])
->add('country', CountryType::class, [
'label' => 'Land',
'placeholder' => 'Bitte auswählen...',
'property_path' => 'address.country',
])
->add('nationality', CountryType::class, [
'label' => 'Nationalität',
'property' => 'nationality',
'placeholder' => 'Bitte auswählen...',
'preferred_choices' => ['D', 'A', 'CH'],
])
->add('email', EmailType::class, [