{{ html()->form('POST', route('serviceConfig')) ->attribute('enctype', 'multipart/form-data') ->attribute('data-toggle', 'validator') ->id('myForm') ->open() }} {{ html()->hidden('id', $serviceconfig->id ?? null)->class('form-control')->placeholder('id') }} {{ html()->hidden('type')->value($page)->class('form-control')->placeholder('id') }}
advance_payment) ? 'checked' : '' }}>
slot_service) ? 'checked' : '' }}>
digital_services) ? 'checked' : '' }}>
service_packages) ? 'checked' : '' }}>
service_addons) ? 'checked' : '' }}>
post_services) ? 'checked' : '' }}>
global_advance_payment) ? 'checked' : '' }}>
{{ html()->label(trans('messages.advance_paynment_percantage') . '(%) *', 'advance_paynment_percantage')->class('form-control-label') }} {{ html()->number('advance_paynment_percantage') ->class('form-control') ->id('advance_paynment_percantage') ->value(!empty($serviceconfig->advance_paynment_percantage) ? $serviceconfig->advance_paynment_percantage : '') ->attribute('min', 1) ->attribute('max', 99) ->attribute('step', '0.1') ->placeholder(__('messages.advance_paynment_percantage')) }}
cancellation_charge) ? 'checked' : '' }}>
{{ html()->label(trans('messages.cancellation_charge_amount') . ' (%) *' , 'cancellation_charge_amount')->class('form-control-label') }} {{ html()->number('cancellation_charge_amount') ->class('form-control') ->id('cancellation_charge_amount') ->value(!empty($serviceconfig->cancellation_charge_amount) ? $serviceconfig->cancellation_charge_amount : '') ->attribute('min', 1) ->attribute('max', 99) ->attribute('step', '0.1') ->placeholder(__('messages.cancellation_charge_amount')) }}
{{ html()->label(trans('messages.cancellation_charge_hours') . ' *', 'cancellation_charge_hours')->class('form-control-label') }} {{ html()->number('cancellation_charge_hours') ->class('form-control') ->id('cancellation_charge_hours') ->value(!empty($serviceconfig->cancellation_charge_hours) ? $serviceconfig->cancellation_charge_hours : '') ->attribute('min', 1) ->attribute('max', 99) ->placeholder(__('messages.cancellation_charge_hours')) }}
{{ html()->submit(__('messages.save'))->class('btn btn-md btn-primary float-md-end') }} {{ html()->form()->close() }}