|
@@ -3,6 +3,7 @@
|
|
|
namespace App\Form;
|
|
|
|
|
|
use Symfony\Component\Form\AbstractType;
|
|
|
+use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
|
|
|
use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
|
|
|
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
|
|
use Symfony\Component\Form\Extension\Core\Type\EmailType;
|
|
@@ -43,12 +44,11 @@ class UserType extends AbstractType
|
|
|
),
|
|
|
'multiple' => true
|
|
|
))
|
|
|
- ->add('activated', ChoiceType::class, array(
|
|
|
- 'label' => 'Compte activé',
|
|
|
- 'choices' => array(
|
|
|
- 'Oui' => true,
|
|
|
- 'Non' => false
|
|
|
- )
|
|
|
+ ->add('activated', CheckboxType::class, array(
|
|
|
+ 'label_attr' => [
|
|
|
+ 'class' => 'checkbox-switch'
|
|
|
+ ],
|
|
|
+ 'required' => false
|
|
|
))
|
|
|
->add('save', SubmitType::class, array('label' => 'Enregistrer'));
|
|
|
|