for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of AppName.
*
* (c) Monofony
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Form\Type\User;
use Sylius\Bundle\ResourceBundle\Form\Type\AbstractResourceType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
use Symfony\Component\Form\FormBuilderInterface;
final class AppUserRegistrationType extends AbstractResourceType
{
/**
* {@inheritdoc}
public function buildForm(FormBuilderInterface $builder, array $options)
$builder
->add('plainPassword', RepeatedType::class, [
'type' => PasswordType::class,
'first_options' => ['label' => 'sylius.form.user.password.label'],
'second_options' => ['label' => 'sylius.form.user.password.confirmation'],
'invalid_message' => 'sylius.user.plainPassword.mismatch',
])
;
}
public function getBlockPrefix()
return 'sylius_app_user_registration';