Disable Submit Button
I have a custom page with a simple form having one single checkbox button. I want to disable the submit button if the checkbox is not checked /accepted. Is there any easy way to achieve it?
Thanks in advance for any help.
3 Replies
use
->live()
on the checkbog
and ->disabled(fn(Get $get):bool => $get('field'))
on the actionThanks for your response. I will try it out