{!! Form::mediaImage('background_image', Arr::get($attributes, 'background_image')) !!}
{!! Form::customColor('background_color', Arr::get($attributes, 'background_color'), ['class' => 'form-control']) !!}
{!! Form::customSelect('style', [
'style-1' => __('Style 1'),
'style-2' => __('Style 2'),
'style-3' => __('Style 3'),
'style-4' => __('Style 4'),
'style-5' => __('Style 5'),
'style-6' => __('Style 6'),
'style-7' => __('Style 7'),
], Arr::get($attributes, 'style')) !!}
@php
$fields = [
'title' => [
'title' => __('Title'),
],
'subtitle' => [
'title' => __('Subtitle'),
],
'image' => [
'type' => 'image',
'title' => __('Image'),
],
'bg_color' => [
'type' => 'color',
'title' => __('Background color'),
],
];
@endphp
{!! Theme::partial('shortcodes.partials.tabs', compact('fields', 'attributes')) !!}