{!! Form::customSelect('style', [ 'style-1' => __('Style 1'), 'style-2' => __('Style 2'), ], Arr::get($attributes, 'style')) !!}
@php $fields = [ 'title' => [ 'title' => __('Title'), 'required' => true, ], 'subtitle' => [ 'title' => __('Subtitle'), ], 'link' => [ 'title' => __('Link'), 'placeholder' => __('Learn more Link'), ], 'image' => [ 'type' => 'image', 'title' => __('Image'), ], 'bottom_image' => [ 'type' => 'image', 'title' => __('Bottom Image'), ], 'bg_color' => [ 'type' => 'color', 'title' => __('Background Color'), ], 'border_color' => [ 'type' => 'color', 'title' => __('Border Color'), ], ]; @endphp {!! Theme::partial('shortcodes.partials.tabs', compact('fields', 'attributes')) !!}