{!! Form::customSelect('style', [ 'style-1' => __('Style :number', ['number' => 1]), 'style-2' => __('Style :number', ['number' => 2]), ], Arr::get($attributes, 'style')) !!}
@php $fields = [ 'title' => [ 'title' => __('Title'), ], 'icon_image' => [ 'type' => 'image', 'title' => __('Icon image'), ], 'description' => [ 'title' => __('Description'), ], 'label' => [ 'title' => __('Button label') ], 'url' => [ 'title' => __('Button url') ], 'type' => [ 'type' => 'select', 'title' => __('Type'), 'options' => [ 'personal' => __('Personal'), 'enterprise' => __('Enterprise'), ] ], ]; @endphp {!! Theme::partial('shortcodes.partials.tabs', compact('fields', 'attributes')) !!}