<?php
namespace App\Form;
use App\Entity\User;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\HiddenType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\TelType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Validator\Constraints\IsTrue;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\Email;
class RegistrationFormSellerType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('name', TextType::class, [
'constraints' => [
new NotBlank([
'message' => 'Пожалуйста, введите ваше имя.',
]),
],
])
->add('lastname', TextType::class, [
'constraints' => [
new NotBlank([
'message' => 'Пожалуйста, введите вашу фамилию.',
]),
],
])
->add('email', EmailType::class, [
'constraints' => [
new NotBlank([
'message' => 'Поле "Электронная почта" не должно быть пустым',
]),
new Email([
'message' => 'Поле "Электронная почта" должно содержать корректный адрес электронной почты',
]),
],
])
->add('phone', TelType::class, [
'constraints' => [
new NotBlank([
'message' => 'Пожалуйста, введите ваш номер телефона.',
]),
],
])
->add('agreeTerms', CheckboxType::class, [
'mapped' => false,
'constraints' => [
new IsTrue([
'message' => 'Примите условия Пользовательского соглашения.',
]),
],
])
->add('plainPassword', PasswordType::class, [
// instead of being set onto the object directly,
// this is read and encoded in the controller
'mapped' => false,
'attr' => ['autocomplete' => 'new-password'],
'constraints' => [
new NotBlank([
'message' => 'Пожалуйста, введите пароль.',
]),
new Length([
'min' => 6,
'minMessage' => 'Ваш пароль должен содержать минимум {{ limit }} символов',
// max length allowed by Symfony for security reasons
'max' => 4096,
]),
],
])
->add('plainPasswordRepeat', PasswordType::class, [
// instead of being set onto the object directly,
// this is read and encoded in the controller
'mapped' => false,
'attr' => ['autocomplete' => 'new-password'],
'constraints' => [
new NotBlank([
'message' => 'Пожалуйста, повторите пароль.',
]),
new Length([
'min' => 6,
'minMessage' => 'Ваш пароль должен содержать минимум {{ limit }} символов',
// max length allowed by Symfony for security reasons
'max' => 4096,
]),
],
])
;
}
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => User::class,
]);
}
}