{!! Form::mediaImage('icon_image', Arr::get($attributes, 'icon_image')) !!}
{!! Form::customSelect('style', [
'style-1' => __('Style :number', ['number' => 1]),
'style-2' => __('Style :number', ['number' => 2]),
], Arr::get($attributes, 'style')) !!}
{!! Shortcode::fields()->tabs([
'title' => [
'title' => __('Title'),
],
'subtitle' => [
'title' => __('Subtitle'),
],
'payment_cycle' => [
'title' => __('Payment cycle'),
],
'icon_image' => [
'type' => 'image',
'title' => __('Icon image'),
],
'month_price' => [
'title' => __('Month price'),
],
'year_price' => [
'title' => __('Year price'),
],
'button_label' => [
'title' => __('Button label'),
'placeholder' => __('Button label'),
],
'button_url' => [
'title' => __('Button URL'),
'placeholder' => __('Button URL'),
],
'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?'),
],
], $attributes) !!}