{{ Form::open([ 'method' => 'POST', 'url' => route('save.special.settings'), 'id' => 'special_settings_save']) }}
{{ Form::hidden('id', @$branches->id) }}
{{ Form::select('digital_signature', [
0 => 'Default',
1 => 'Digital Signature',
2 => 'Stamp'
], @$specialSettings['digital_signature']->value, ['id' => 'digital_signature', 'class' => 'form-control custom-height']) }}
{{ Form::number('eway_bill_percentage', @$specialSettings['eway_bill_percentage']->value ?? 0.0, ['class' => 'form-control custom-height', 'placeholder' => '%', 'step' => '0.01']) }}
Account user format receipt
{{ Form::checkbox('account_user_formate_receipt', 'Yes', @$specialSettings['account_user_formate_receipt']->value == 'Yes', ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'account_user_formate_receipt', 'data-on' => 'Yes', 'data-off' => 'No','data-width' => '170']) }}
{{ Form::checkbox('cash_user_formate_receipt', 'Yes', @$specialSettings['cash_user_formate_receipt']->value == 'Yes', ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'cash_user_formate_receipt', 'data-on' => 'Yes', 'data-off' => 'No','data-width' => '170']) }}
Parcel booking with reference number
{{ Form::checkbox('parcel_booking_reference_number', 1, @$specialSettings['parcel_booking_reference_number']->value == 1, ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'parcel_booking_reference_number', 'data-on' => 'Yes', 'data-off' => 'No','data-width' => '170']) }}
Hide parcel amount in account booking
{{ Form::checkbox('show_parcel_price_account_booking_print', 1, @$specialSettings['show_parcel_price_account_booking_print']->value == 1, ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'show_parcel_price_account_booking_print', 'data-on' => 'Yes', 'data-off' => 'No','data-width' => '170']) }}
Hide parcel weight in account booking
{{ Form::checkbox('show_parcel_weight_account_booking_print', 1, @$specialSettings['show_parcel_weight_account_booking_print']->value == 1, ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'show_parcel_weight_account_booking_print', 'data-on' => 'Yes', 'data-off' => 'No','data-width' => '170']) }}
{{ Form::checkbox('is_pre_defined_display_gst', 'yes', @$specialSettings['is_pre_defined_display_gst']->value == 'yes', ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'is_pre_defined_display_gst', 'data-on' => 'Yes', 'data-off' => 'No','data-width' => '170']) }}
Parcel booking with number of boxes
{{ Form::checkbox('is_show_parcel_booking_with_number_of_box', 'yes', @$specialSettings['is_show_parcel_booking_with_number_of_box']->value == 'yes', ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'is_show_parcel_booking_with_number_of_box', 'data-on' => 'Yes', 'data-off' => 'No', 'data-width' => '170']) }}
{{ Form::checkbox('is_show_home_statistics', 'yes', @$specialSettings['is_show_home_statistics']->value == 'yes', ['data-toggle' => 'toggle', 'data-size' => 'small', 'id' => 'is_show_home_statistics', 'data-on' => 'Yes', 'data-off' => 'No', 'data-width' => '170']) }}
{{ Form::select('cash_default_print',
array_merge(
['default' => 'Default'],
$isAllowVDReceiptFormat === 'yes' ? ['vd' => 'VD'] : [],
['carrier' => 'Carrier', 'format' => 'Format']
),
@$specialSettings['cash_default_print']->value,
['class' => 'form-control custom-height', 'placeholder' => 'Select Format'])
}}