Skip to content

Commit

Permalink
Update RegistrationFormType.php
Browse files Browse the repository at this point in the history
  • Loading branch information
kingjia90 authored Nov 6, 2023
1 parent 4f1d0fd commit bb5acd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Form/RegistrationFormType.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
]);
Expand Down

0 comments on commit bb5acd9

Please sign in to comment.