{{ html()->form('POST', route('promotionConfig')) ->attribute('enctype', 'multipart/form-data') ->attribute('data-toggle', 'validator') ->id('myForm') ->open() }} {{ html()->hidden('id', $promotionconfig->id ?? null)->class('form-control')->placeholder('id') }} {{ html()->hidden('type')->value($page)->class('form-control')->placeholder('id') }}
promotion_enable) ? 'checked' : '' }}>
{{ html()->label(trans('messages.promotion_price') . '*' .' ' .'('. str_replace('0.00', '', getPriceFormat(0)).')' , 'provider_banner')->class('form-control-label') }}
{{ html()->number('promotion_price') ->class('form-control') ->id('provider_promotion_banner') ->value(!empty($promotionconfig->promotion_price) ? $promotionconfig->promotion_price : '') ->attribute('min', 1) ->attribute('step', '1') ->placeholder(__('messages.example')) }}
{{ html()->submit(__('messages.save'))->class('btn btn-md btn-primary float-md-end') }} {{ html()->form()->close() }}