Hello,
I use something like this
$meta_boxes[] = array(
'title' => __('Structure Info', 'colours-of-a-journey-plugin'),
'type' => 'user',
'fields' => array(
array(
'name' => __( 'Name', 'colours-of-a-journey-plugin' ),
'id' => $prefix . 'structure_name',
'type' => 'text',
'required' => true,
),
),
);
The required attribute does not seem to work.