@twillBlockTitle('Checklist e imagen 2')
@twillBlockIcon('media-list')
@formField('input', [
'name' => 'title',
'label' => 'Título',
'required' => true,
'translated' => true,
])
@formField('radios', [
'name' => 'bg_color',
'label' => 'Fondo',
'default' => 'grey',
'options' => [
[
'value' => 'grey',
'label' => 'Gris'
],
[
'value' => 'light',
'label' => 'Blanco'
],
]
])
@formField('medias', [
'name' => 'image__section_info_with_checklist_2',
'label' => 'Imagen',
'required' => true,
])
Item 1
@formField('input', [
'name' => 'item_1_title',
'label' => 'Título',
'translated' => true,
])
@formField('input', [
'name' => 'item_1_description',
'type' => 'textarea',
'label' => 'Descripción',
'translated' => true,
])
Item 2
@formField('input', [
'name' => 'item_2_title',
'label' => 'Título',
'translated' => true,
])
@formField('input', [
'name' => 'item_2_description',
'type' => 'textarea',
'label' => 'Descripción',
'translated' => true,
])
Item 3
@formField('input', [
'name' => 'item_3_title',
'label' => 'Título',
'translated' => true,
])
@formField('input', [
'name' => 'item_3_description',
'type' => 'textarea',
'label' => 'Descripción',
'translated' => true,
])