Forms Autosave & Load Reliability
This update resolves a critical bug where form validation status was not being persisted to the database after submission. The root cause was an early-exit guard in saveFormToServer() that skipped the save when field values hadn't changed — meaning the formValid flag set during submission was never actually written to the server.
A force parameter was added to bypass this guard on explicit submission, ensuring the valid flag is always persisted. Additionally, the formStatus server global was corrected from incorrectly echoing the form_id string to properly injecting the actual status flags object from PHP, which fixes sidebar checkmarks being blank on page load.
The page load experience was also significantly improved by eliminating the AJAX round-trip previously used to hydrate form fields on load. Form data and status flags are now inlined directly into the page by PHP at render time, meaning fields and sidebar status restore instantly without waiting for a network request to complete.
