From 48bf4f26c4c3830f0afe2756817d164ab1dcb6c0 Mon Sep 17 00:00:00 2001 From: thisfro Date: Wed, 26 Jan 2022 12:37:20 +0100 Subject: [PATCH] Add icons for filterForm --- src/Form/OfferFilterFormType.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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) ;