@if ($type == 'customer')
@elseif($type == 'supplier')
@endif
@if ($type == 'customer')
{!! Form::select(
'has_no_sell_from',
[
'one_month' => __('lang_v1.one_month'),
'three_months' => __('lang_v1.three_months'),
'six_months' => __('lang_v1.six_months'),
'one_year' => __('lang_v1.one_year'),
],
null,
['class' => 'form-control', 'id' => 'has_no_sell_from', 'placeholder' => __('messages.please_select')],
) !!}
{!! Form::select('cg_filter', $customer_groups, null, ['class' => 'form-control', 'id' => 'cg_filter']) !!}
@endif
@if (config('constants.enable_contact_assign') === true)
{!! Form::select('assigned_to', $users, null, ['class' => 'form-control select2', 'style' => 'width:100%']) !!}
{!! Form::label('assigned_to', __('lang_v1.assigned_to') . ':') !!}
@endif
{!! Form::select(
'status_filter',
['active' => __('business.is_active'), 'inactive' => __('lang_v1.inactive')],
null,
['class' => 'form-control', 'id' => 'status_filter', 'placeholder' => __('lang_v1.none')],
) !!}