Normally, if I use CakePHP's magic and validate forms then it would "persist the form" which would mean the user wouldn't have to re-input everything. Also, CakePHP by default marks all the fields that failed the validation. My question is, since I am sending all the form data to an API, how can I still use the all of CakePHP's magic?
I looked into custom validation methods, but the problem is that I have to send all the data to the API at once and I'll get all the errors back at once (Billing information).