Add NotBlank validator component

This commit is contained in:
Jannis Portmann 2021-06-15 17:55:34 +02:00
parent 37ccc83523
commit 2e4e005a55

View file

@ -10,6 +10,7 @@ use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Validator\Constraints\Image;
use Symfony\Component\Validator\Constraints\NotBlank;
class OfferingFormType extends AbstractType
{
@ -22,6 +23,11 @@ class OfferingFormType extends AbstractType
])
->add('description', null, [
'required' => false,
'constraints' => [
new NotBlank([
'message' => 'Please enter a short description',
]),
]
])
->add('photo', FileType::class, [
'required' => false,