I'm using Symfony 5 and I have a problem with my form.
How to disable dates in the future when I use a DateType
with 'widget' => 'single-text'
and js-datepicker
?
Note that I don't have access to the frontend, everything has to be done in the backend.
Here is what I currently have:
$builder->add('date', DateType::class, [
'widget' => 'single_text',
'attr' => [
'class' => 'js-datepicker'
]
]);
Thank you in advance for your answer!