diff --git a/src/Form/OfferFilterFormType.php b/src/Form/OfferFilterFormType.php index 5a6c36a..425a095 100644 --- a/src/Form/OfferFilterFormType.php +++ b/src/Form/OfferFilterFormType.php @@ -15,13 +15,16 @@ class OfferFilterFormType extends AbstractType { $builder ->add('search', TextType::class, [ - 'label' => 'Search', + 'label' => 'Search', + 'label_html' => true, ]) ->add('zipCode', NumberType::class, [ - 'label' => 'ZIP', + 'label' => 'ZIP', + 'label_html' => true, ]) ->add('distance', NumberType::class, [ - 'label' => 'Distance', + 'label' => 'Distance', + 'label_html' => true, ]) ->add('Apply', SubmitType::class) ;