Problèmes forms

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Component\Form\Extension\Core\Type\TextType; class UserType extends AbstractType { public function buildForm(FormBuilderInterface

4
probleme affichage blanc d'un formulaire

symfony m'indique pas que j,ai des erreur voici mon code : **controlleur :**

3
SF3 "Persister" l'ajout d'une relation

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Doctrine\ORM\EntityRepository; use Symfony\Component\HttpFoundation\Request; use Symfony\Bridge\Doctrine\Form\Type\EntityType

4
Formulaire dynamique (4 listes liées) Symfony/EventListener

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Form\FormInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Symfony\Component\Form\FormEvent; use Symfony\Component\Form\FormEvents; class

15
Problème de récupération de données dans un formulaire imbriqué

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\CheckboxType; use Symfony\Component\Form\Extension\Core\Type\IntegerType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver

3
Récuperer les données de l'utilisateur via le formulaire d'inscription

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\Routing\Annotation\Route; use App\Entity\User; use App\Form\RegistrationType; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Security\Http\Authentication

0
Function name must be a string

Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; class OrderController extends AbstractController { private $entityManager; public function __construct

0
[grumphp]
aluc,

Symfony\Component\Console\Application->doRun() C:\wamp\www\_ServeurDIS\banc\vendor\symfony\console\Application.php:124 1.1082 7833616 4. Symfony\Component\Console\Application->doRunCommand() C:\wamp\www\_ServeurDIS\banc\vendor\symfony\console

0
Formulaire et champs imbriqués

Symfony\Component\Form\FormEvent; use Symfony\Component\Form\FormEvents; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Bridge\Doctrine\Form\Type

1
Problème de champs vides

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Blog\newsBundle\Form\ImageType; class ArticleType extends AbstractType { /** * @param FormBuilderInterface $builder * @param array $options */ public

15