feat: allow editing of nationality in personal data

This commit is contained in:
Björn Fromme
2026-03-16 12:02:59 +01:00
parent 7708ea6a0f
commit 18d60c8781
2 changed files with 6 additions and 2 deletions
+5
View File
@@ -32,6 +32,11 @@ class PersonalDataType extends AbstractType
'label' => 'Land',
'property_path' => 'address.country',
])
->add('nationality', CountryType::class, [
'label' => 'Nationalität',
'property' => 'nationality',
'preferred_choices' => ['D', 'A', 'CH'],
])
->add('email', EmailType::class, [
'label' => 'E-Mail',
'property_path' => 'communication.email',