{!! Form::customSelect(
'style',
[
'style-1' => __('Style :number', ['number' => 1]),
'style-2' => __('Style :number', ['number' => 2]),
],
Arr::get($attributes, 'style'),
) !!}
{!! Form::mediaImage('image', Arr::get($attributes, 'image')) !!}
{!! Form::mediaImage('image_1', Arr::get($attributes, 'image_1')) !!}
{!! Form::mediaImage('background_image', Arr::get($attributes, 'background_image')) !!}
{!! Form::mediaImage('background_image_1', Arr::get($attributes, 'background_image_1')) !!}
{!! Form::mediaImage('background_image_2', Arr::get($attributes, 'background_image_2')) !!}
{!! Form::customColor('background_color', Arr::get($attributes, 'background_color', '#00194C'), [
'class' => 'form-control',
]) !!}
{!! Shortcode::fields()->tabs(
[
'title' => [
'title' => __('Title'),
'required' => true,
],
'description' => [
'type' => 'textarea',
'title' => __('Description'),
'required' => false,
],
],
$attributes,
) !!}