fix: add missing field for nationality in personal data form

This commit is contained in:
Björn Fromme
2025-01-26 20:33:47 +01:00
parent 51086a284f
commit 93bd438e17
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -36,6 +36,11 @@ class PersonalDataType extends AbstractType
'widget' => 'single_text',
'input' => 'datetime_immutable',
])
->add('nationality', CountryType::class, [
'label' => 'Nationalität',
'property' => 'nationality',
'preferred_choices' => ['D', 'A', 'CH'],
])
->add('street', TextType::class, [
'label' => 'Straße',
'property_path' => 'address.street',