Add Label for ZIP and make desc not required
This commit is contained in:
parent
a3bd73abd1
commit
774acebf79
2 changed files with 38 additions and 2 deletions
|
@ -5,6 +5,7 @@ namespace App\Form;
|
|||
use App\Entity\Offering;
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\FileType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
|
@ -16,8 +17,12 @@ class OfferingFormType extends AbstractType
|
|||
{
|
||||
$builder
|
||||
->add('title')
|
||||
->add('zipCode')
|
||||
->add('description')
|
||||
->add('zipCode', TextType::class, [
|
||||
'label' => 'ZIP',
|
||||
])
|
||||
->add('description', null, [
|
||||
'required' => false,
|
||||
])
|
||||
->add('photo', FileType::class, [
|
||||
'required' => false,
|
||||
'mapped' => false,
|
||||
|
|
Reference in a new issue