Facing issue in form validation rule

I want to add a rule so that if any required field on my booking page is left empty the booking should not be confirmed can someone guide me how to set this condition?

To achieve this, you can use the Rules Panel by following these steps:

  1. Set the Event Trigger:
  1. Define the Condition:
  • Select the field(s) you want to validate.
  • Set the condition to Field value is not empty to check if any required fields are left blank.
  1. Add the Action:
  • For the action, choose Show Popup Message.
  • In the popup, specify the message you want to display, such as “Please fill out the required fields.”
  1. Add a Second Rule for Non-Empty Fields:
  • Create another rule with the same On Click event.
  • For this rule, set the condition to Field value is not empty.
  • The action here can be Save Page Data or whatever action you want to trigger when all fields are filled.

By following these steps, you ensure that:

  • The form won’t submit if any required field is empty, displaying a popup instead.
  • Once all fields are completed, the form can proceed to save the data or perform any other action.

Make sure to tailor the conditions and actions to match the specific fields and functionality you need!