{!! Form::mediaImage('image', Arr::get($attributes, 'image')) !!}
{!! Form::mediaImage('background_image_1', Arr::get($attributes, 'background_image_1')) !!}
{!! Form::mediaImage('background_image_2', Arr::get($attributes, 'background_image_2')) !!}
{!! Form::mediaImage('background_image_3', Arr::get($attributes, 'background_image_3')) !!}
{!! Form::customColor('background_color', Arr::get($attributes, 'background_color', theme_option('secondary_color')), [
'class' => 'form-control',
]) !!}
{!! Shortcode::fields()->tabs(
[
'title' => [
'title' => __('Title'),
'required' => true,
],
'data' => [
'type' => 'number',
'title' => __('Data'),
'required' => true,
],
'unit' => [
'type' => 'text',
'title' => __('Unit'),
'required' => false,
],
],
$attributes,
) !!}