I’ve developed a Shopify app using an extension block for an order form, which I’ve integrated into my Shopify store. My goal is to seamlessly convert the data entered by customers into actual orders that appear in the Shopify admin order dashboard. Could someone please guide me through the step-by-step setup process for achieving this?
# {{ block.settings.form_title }}
×
## {{ product.title }}
{% if product.featured_image %}
{% endif %}
{% schema %}
{
"name": "Order Form",
"target": "section",
"class": "app-dashboard-form",
"stylesheet": "order-app.css",
"javascript": "order-app.js",
"settings": [
{
"type": "text",
"id": "form_title",
"label": "Form Title"
}
]
}
{% endschema %}

