Warning: Undefined variable $namespace in /home/technoon/public_html/dyenix/vendor/symfony/maker-bundle/templates/resetPassword/ChangePasswordForm.tpl.php on line 3
;
Warning: Undefined variable $use_statements in /home/technoon/public_html/dyenix/vendor/symfony/maker-bundle/templates/resetPassword/ChangePasswordForm.tpl.php on line 5
class
Warning: Undefined variable $class_name in /home/technoon/public_html/dyenix/vendor/symfony/maker-bundle/templates/resetPassword/ChangePasswordForm.tpl.php on line 7
extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options): void { $builder ->add('plainPassword', RepeatedType::class, [ 'type' => PasswordType::class, 'options' => [ 'attr' => [ 'autocomplete' => 'new-password', ], ], 'first_options' => [ 'constraints' => [ new NotBlank([ 'message' => 'Please enter a password', ]), new Length([ 'min' => 12, 'minMessage' => 'Your password should be at least {{ limit }} characters', // max length allowed by Symfony for security reasons 'max' => 4096, ]), new PasswordStrength(), new NotCompromisedPassword(), ], 'label' => 'New password', ], 'second_options' => [ 'label' => 'Repeat Password', ], 'invalid_message' => 'The password fields must match.', // Instead of being set onto the object directly, // this is read and encoded in the controller 'mapped' => false, ]) ; } public function configureOptions(OptionsResolver $resolver): void { $resolver->setDefaults([]); } }