Hinzufügen eines Fehlers zum Symfony 2-Formularelement

Ich überprüfe eine Überprüfung in meinem Controller. Und ich möchte Fehler zu einem bestimmten Element meines Formulars hinzufügen, wenn ein Fehler auftritt. Mein Formular:

use Symfony\Component\Form\FormError;

// ...

$config = new Config();
$form = $this->createFormBuilder($config)
        ->add('googleMapKey', 'text', array('label' => 'Google Map key'))
        ->add('locationRadius', 'text', array('label' => 'Location radius (km)'))
        ->getForm();

// ...

$form->addError(new FormError('error message'));

Die Methode addError () fügt dem Formular einen Fehler hinzu, nicht dem Element. Wie kann ich dem locationRadius-Element einen Fehler hinzufügen?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage