Make description required
This commit is contained in:
parent
171a816f9d
commit
3dc529b7cc
1 changed files with 7 additions and 0 deletions
|
@ -10,6 +10,8 @@ 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 +24,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,
|
||||
|
|
Reference in a new issue