Please tell me how to get the array of fields from blueprints.yaml form, something like the type of meta.name and meta.content, but with custom settings.
Example:
form:
fields:
tabs:
type: tabs
active: 1
fields:
service:
type: tab
title: Services
fields:
header.service:
name: service
type: list
label: Block
fields:
.title:
type: text
label: Title
help: Title
.doctors:
type: array
label: Doctors
help: Doctors
placeholder_key: KEY
placeholder_value: VALUE
required: true
{{ service.title }} works and gives the Title, but {{ service.doctors }} displays just the word: array
Thanks!