{!! Form::customSelect('style', [
'style-1' => __('Style 1'),
'style-2' => __('Style 2'),
'style-3' => __('Style 3'),
], Arr::get($attributes, 'style')) !!}
@php
$fields = [
'title' => [
'title' => __('Title'),
],
'subtitle' => [
'title' => __('Subtitle'),
],
'count' => [
'type' => 'number',
'title' => __('Count'),
],
'extra' => [
'title' => __('Extra'),
],
];
@endphp
{!! Theme::partial('shortcodes.partials.tabs', compact('fields', 'attributes')) !!}