@include('components.input', [
'id' => 'options_'.$id.'_content',
'name' => 'options['.$id.'][content]',
'label' => '',
'type' => 'text',
'mandatory' => true,
'class' => '',
'readonly' => false,
'maxlength' => '255',
'value' => isset($option->content) ? $option->content : '',
'placeholder' => 'Option Content',
'otherattr' => '',
'margin' => false,
])