src/Form/RegistrationFormSellerType.php line 20

Open in your IDE?
  1. <?php
  2. namespace App\Form;
  3. use App\Entity\User;
  4. use Symfony\Component\Form\AbstractType;
  5. use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
  6. use Symfony\Component\Form\Extension\Core\Type\EmailType;
  7. use Symfony\Component\Form\Extension\Core\Type\HiddenType;
  8. use Symfony\Component\Form\Extension\Core\Type\PasswordType;
  9. use Symfony\Component\Form\Extension\Core\Type\TelType;
  10. use Symfony\Component\Form\Extension\Core\Type\TextType;
  11. use Symfony\Component\Form\FormBuilderInterface;
  12. use Symfony\Component\OptionsResolver\OptionsResolver;
  13. use Symfony\Component\Validator\Constraints\IsTrue;
  14. use Symfony\Component\Validator\Constraints\Length;
  15. use Symfony\Component\Validator\Constraints\NotBlank;
  16. use Symfony\Component\Validator\Constraints\Email;
  17. class RegistrationFormSellerType extends AbstractType
  18. {
  19.     public function buildForm(FormBuilderInterface $builder, array $options): void
  20.     {
  21.         $builder
  22.             ->add('name'TextType::class, [
  23.                 'constraints' => [
  24.                     new NotBlank([
  25.                         'message' => 'Пожалуйста, введите ваше имя.',
  26.                     ]),
  27.                 ],
  28.             ])
  29.             ->add('lastname'TextType::class, [
  30.                 'constraints' => [
  31.                     new NotBlank([
  32.                         'message' => 'Пожалуйста, введите вашу фамилию.',
  33.                     ]),
  34.                 ],
  35.             ])
  36.             ->add('email'EmailType::class, [
  37.                 'constraints' => [
  38.                     new NotBlank([
  39.                         'message' => 'Поле "Электронная почта" не должно быть пустым',
  40.                     ]),
  41.                     new Email([
  42.                         'message' => 'Поле "Электронная почта" должно содержать корректный адрес электронной почты',
  43.                     ]),
  44.                 ],
  45.             ])
  46.             ->add('phone'TelType::class, [
  47.                 'constraints' => [
  48.                     new NotBlank([
  49.                         'message' => 'Пожалуйста, введите ваш номер телефона.',
  50.                     ]),
  51.                 ],
  52.             ])
  53.             ->add('agreeTerms'CheckboxType::class, [
  54.                 'mapped' => false,
  55.                 'constraints' => [
  56.                     new IsTrue([
  57.                         'message' => 'Примите условия Пользовательского соглашения.',
  58.                     ]),
  59.                 ],
  60.             ])
  61.             ->add('plainPassword'PasswordType::class, [
  62.                 // instead of being set onto the object directly,
  63.                 // this is read and encoded in the controller
  64.                 'mapped' => false,
  65.                 'attr' => ['autocomplete' => 'new-password'],
  66.                 'constraints' => [
  67.                     new NotBlank([
  68.                         'message' => 'Пожалуйста, введите пароль.',
  69.                     ]),
  70.                     new Length([
  71.                         'min' => 6,
  72.                         'minMessage' => 'Ваш пароль должен содержать минимум {{ limit }} символов',
  73.                         // max length allowed by Symfony for security reasons
  74.                         'max' => 4096,
  75.                     ]),
  76.                 ],
  77.             ])
  78.             ->add('plainPasswordRepeat'PasswordType::class, [
  79.                 // instead of being set onto the object directly,
  80.                 // this is read and encoded in the controller
  81.                 'mapped' => false,
  82.                 'attr' => ['autocomplete' => 'new-password'],
  83.                 'constraints' => [
  84.                     new NotBlank([
  85.                         'message' => 'Пожалуйста, повторите пароль.',
  86.                     ]),
  87.                     new Length([
  88.                         'min' => 6,
  89.                         'minMessage' => 'Ваш пароль должен содержать минимум {{ limit }} символов',
  90.                         // max length allowed by Symfony for security reasons
  91.                         'max' => 4096,
  92.                     ]),
  93.                 ],
  94.             ])
  95.         ;
  96.     }
  97.     public function configureOptions(OptionsResolver $resolver): void
  98.     {
  99.         $resolver->setDefaults([
  100.             'data_class' => User::class,
  101.         ]);
  102.     }
  103. }