Hey everyone,
I'm in the process of building a multi-module CMS using the latest version of Phalcon. I have it set up as a multi-module app ("frontend" for the main site and "backend" for the admin using volt as the templating system. Everything so far has been working fine, but now that I'm putting in the form volt tag, I'm having issues.
{{ form('pages/create', 'method':'post') }}
Since I have my backend module routed to /admin, I would expect the form to have the action set as "/admin/pages/create", but instead it's showing the form action as "/public/pages/create".
Is there some sort of base directory that I need to set somewhere so that /admin is used instead of /public ? This is the only issue I'm seeing so far, so I'm at a bit of a loss.