{!! Form::select('widget[button_alignment]',['left' => 'Left','center' => 'Centered','right' => 'Right'],(isset($settings['button_alignment'])) ? $settings['button_alignment'] : null,['class' => 'form-control custom-select']) !!}
{!! Form::label('product','Product') !!}
{!! Form::select('widget[product]' , $products , $productId , ['class' => 'form-control chosen-select','data-placeholder' => 'Choose Product','id' => 'selected_cart_product']) !!}
{{ Form::radio('widget[subscription]', 'standard' , $selectedSubscription == 'standard' , ['class' => 'field']) }}
{{ Form::radio('widget[subscription]', 'subscription' , $selectedSubscription == 'subscription', ['class' => 'field']) }}
{{--
--}}
{!! Form::label('option','Autoship Options') !!}
{!! Form::select('widget[product_autoship_option]' , $autoShipOptions , (isset($settings['product_autoship_option'])) ? $settings['product_autoship_option'] : 0 , ['class' => 'form-control','id' => 'selected_autoship_option']) !!}
{!! Form::label('option','Options') !!}
{!! Form::select('widget[product_option]' , $productOptions , (isset($settings['product_option'])) ? $settings['product_option'] : 0 , ['class' => 'form-control','id' => 'selected_cart_product_option']) !!}
{{-- @include('Website::web-builder.widget._advance_setting')--}}