
Overview
The Form fieldtype is gives your users a way to pick a form to include along with the current entry. How that form is implemented or shows up on the page is up to you.
Data Storage
The Form fieldtype stores the handle
of a single form as a string, or an array of handles if max_items
is greater than 1.
Templating
The Form fieldtype uses augmentation to return Form instances.
{{ form_field }} {{ fields }} <div class="p-2"> <label>{{ display }}</label> <div class="p-1">{{ field }}</div> {{ if error }} <p class="text-gray-500">{{ error }}</p> {{ /if }} </div> {{ /fields }} <button type="submit">Submit</button>{{ /form_field }}
Options
max_items
The maximum number of forms that may be selected.
placeholder
Set the non-selectable placeholder text. Default: none.