I'm trying the plugin and have some questions:
1. I set up the plugin but a can't create form submissions from the admin, for some reason the form select is disabled. Should I be able to create submissions from the admin?
2. Does someone has a simpler demo for the front form? I don't understand how should I send the data for the submission post.
Have you looked at how we submit forms on the payload website? It might be handy to compare!
https://github.com/payloadcms/website/blob/main/src/components/CMSForm/index.tsx@akacronos form submissions are meant to be created via Payload APIs (like a website, for instance). This is because form submissions made by content editors doesn't provide much value—you want real data from real users. We have example repos to demonstrate this
https://github.com/payloadcms/form-builder-example-cmshttps://github.com/payloadcms/form-builder-example-website
. Both of these will soon be moved directly into our Payload repo in the
/examples
folder so heads up for future readers.
thanks, I think this example is easier to understand, I was struggling with the payload website implementation.