feat: allow editing of nationality in personal data

This commit is contained in:
Björn Fromme
2026-01-19 17:12:26 +01:00
parent 35c289240d
commit 2949870acc
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',