Forms
Frontend forms are rendered from the Forms model and embedded using placeholder processing.
Observed Flow
1. A page references a form via placeholder tokens or direct view inclusion.
1. App\Helpers\Placeholders::processContent() replaces the form token with HTML.
1. Form submissions are stored in FormsSent and FormsSentFields.
Relevant Files
- Model: app/Models/Forms.php.
- Admin management: routes/web/backend/assets.php under /assets/forms.
- Thank-you pages: MintocomThankYouController, MintoapartmentsThankYouController.
Inferred / Partial - Form validation and spam protection appear to be handled primarily on the frontend or by legacy utilities rather than Laravel Form Requests.