From bb5acd94cbeedd630214172119bbc5ae5c0f88a7 Mon Sep 17 00:00:00 2001 From: JiaJia Ji Date: Mon, 6 Nov 2023 16:33:10 +0100 Subject: [PATCH] Update RegistrationFormType.php --- src/Form/RegistrationFormType.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Form/RegistrationFormType.php b/src/Form/RegistrationFormType.php index a671fbba..41958972 100644 --- a/src/Form/RegistrationFormType.php +++ b/src/Form/RegistrationFormType.php @@ -51,21 +51,21 @@ public function buildForm(FormBuilderInterface $builder, array $options) ->add('email', EmailType::class, [ 'label' => 'general.email', 'attr' => [ - 'maxlength' => 100 + 'maxlength' => 190 ], 'required' => true ]) ->add('firstname', TextType::class, [ 'label' => 'general.firstname', 'attr' => [ - 'maxlength' => 100 + 'maxlength' => 190 ], 'required' => true ]) ->add('lastname', TextType::class, [ 'label' => 'general.lastname', 'attr' => [ - 'maxlength' => 100 + 'maxlength' => 190 ], 'required' => true ]);