{!! 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'), ['class' => 'form-control']) !!}
{!! Form::customSelect('style', [
'style-1' => __('Style 1'),
'style-2' => __('Style 2'),
], Arr::get($attributes, 'style')) !!}
@php
$fields = [
'title' => [
'title' => __('Title'),
],
'subtitle' => [
'title' => __('Subtitle'),
],
'month_price' => [
'title' => __('Month price'),
],
'year_price' => [
'title' => __('Year price'),
],
'link' => [
'title' => __('Link'),
'placeholder' => __('Learn more Link'),
],
'title_link' => [
'title' => __('Title link'),
'placeholder' => __('Title link'),
],
'checked' => [
'title' => __('Checked list'),
'placeholder' => __('Enter a list with checked, separated by semicolons'),
],
'uncheck' => [
'title' => __('Uncheck list'),
'placeholder' => __('Enter a list with unchecked, separated by semicolons'),
],
'active' => [
'type' => 'checkbox',
'title' => __('Is active?'),
],
];
@endphp
{!! Theme::partial('shortcodes.partials.tabs', compact('fields', 'attributes')) !!}