PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
resources
/
views
/
products
/
partials
<div class="row price-group"> <input type="hidden" value="{{ old('sale_type', $product ? $product->sale_type : 0) }}" class="detect-schedule hidden" name="sale_type"> <div class="col-md-4"> <div class="form-group @if ($errors->has('sku')) has-error @endif"> <label class="text-title-field">{{ trans('plugins/ecommerce::products.sku') }}</label> {!! Form::text('sku', old('sku', $product ? $product->sku : null), ['class' => 'next-input', 'id' => 'sku', 'data-counter' => 30]) !!} </div> @if (($isVariation && !$product) || ($product && $product->is_variation && !$product->sku)) <div class="form-group"> <label class="text-title-field"> <input type="hidden" name="auto_generate_sku" value="0"> <input type="checkbox" name="auto_generate_sku" class="hrv-checkbox" value="1"> {{ trans('plugins/ecommerce::products.form.auto_generate_sku') }} </label> </div> @endif </div> <div class="col-md-4"> <div class="form-group"> <label class="text-title-field">{{ trans('plugins/ecommerce::products.form.price') }}</label> <div class="next-input--stylized"> <span class="next-input-add-on next-input__add-on--before">{{ get_application_currency()->symbol }}</span> <input name="price" class="next-input input-mask-number regular-price next-input--invisible" step="any" value="{{ old('price', $product ? $product->price : ($originalProduct->price ?? 0)) }}" type="text"> </div> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="text-title-field"> <span>{{ trans('plugins/ecommerce::products.form.price_sale') }}</span> <a href="javascript:;" class="turn-on-schedule @if (old('sale_type', $product ? $product->sale_type : ($originalProduct->sale_type ?? 0)) == 1) hidden @endif">{{ trans('plugins/ecommerce::products.form.choose_discount_period') }}</a> <a href="javascript:;" class="turn-off-schedule @if (old('sale_type', $product ? $product->sale_type : ($originalProduct->sale_type ?? 0)) == 0) hidden @endif">{{ trans('plugins/ecommerce::products.form.cancel') }}</a> </label> <div class="next-input--stylized"> <span class="next-input-add-on next-input__add-on--before">{{ get_application_currency()->symbol }}</span> <input name="sale_price" class="next-input input-mask-number sale-price next-input--invisible" value="{{ old('sale_price', $product ? $product->sale_price : ($originalProduct->sale_price ?? null)) }}" type="text"> </div> </div> </div> <div class="col-md-6 scheduled-time @if (old('sale_type', $product ? $product->sale_type : ($originalProduct->sale_type ?? 0)) == 0) hidden @endif"> <div class="form-group"> <label class="text-title-field">{{ trans('plugins/ecommerce::products.form.date.start') }}</label> <input name="start_date" class="next-input form-date-time" value="{{ old('start_date', $product ? $product->start_date : ($originalProduct->start_date ?? null)) }}" type="text"> </div> </div> <div class="col-md-6 scheduled-time @if (old('sale_type', $product ? $product->sale_type : ($originalProduct->sale_type ?? 0)) == 0) hidden @endif"> <div class="form-group"> <label class="text-title-field">{{ trans('plugins/ecommerce::products.form.date.end') }}</label> <input name="end_date" class="next-input form-date-time" value="{{ old('end_date', $product ? $product->end_date : ($originalProduct->end_date ?? null)) }}" type="text"> </div> </div> </div> <hr/> <div class="form-group"> <div class="storehouse-management"> <div class="mt5"> <input type="hidden" name="with_storehouse_management" value="0"> <label><input type="checkbox" class="hrv-checkbox storehouse-management-status" value="1" name="with_storehouse_management" @if (old('with_storehouse_management', $product ? $product->with_storehouse_management : ($originalProduct->with_storehouse_management ?? 0)) == 1) checked @endif> {{ trans('plugins/ecommerce::products.form.storehouse.storehouse') }}</label> </div> </div> </div> <div class="storehouse-info @if (old('with_storehouse_management', $product ? $product->with_storehouse_management : ($originalProduct->with_storehouse_management ?? 0)) == 0) hidden @endif"> <div class="form-group"> <label class="text-title-field">{{ trans('plugins/ecommerce::products.form.storehouse.quantity') }}</label> <input type="text" class="next-input input-mask-number input-medium" value="{{ old('quantity', $product ? $product->quantity : ($originalProduct->quantity ?? 0)) }}" name="quantity"> </div> <div class="form-group"> <label class="text-title-field"> <input type="hidden" name="allow_checkout_when_out_of_stock" value="0"> <input type="checkbox" name="allow_checkout_when_out_of_stock" class="hrv-checkbox" value="1" @if (old('allow_checkout_when_out_of_stock', $product ? $product->allow_checkout_when_out_of_stock : ($originalProduct->allow_checkout_when_out_of_stock ?? 0)) == 1) checked @endif> {{ trans('plugins/ecommerce::products.form.stock.allow_order_when_out') }} </label> </div> </div> <div class="form-group stock-status-wrapper @if (old('with_storehouse_management', $product ? $product->with_storehouse_management : ($originalProduct->with_storehouse_management ?? 0)) == 1) hidden @endif"> <label class="text-title-field">{{ trans('plugins/ecommerce::products.form.stock_status') }}</label> {!! Form::customSelect('stock_status', \Botble\Ecommerce\Enums\StockStatusEnum::labels(), $product ? $product->stock_status : null) !!} </div> <hr/> <div class="shipping-management"> <label class="text-title-field">{{ trans('plugins/ecommerce::products.form.shipping.title') }}</label> <div class="row"> <div class="col-md-3 col-md-6"> <div class="form-group"> <label>{{ trans('plugins/ecommerce::products.form.shipping.weight') }} ({{ ecommerce_weight_unit() }})</label> <div class="next-input--stylized"> <span class="next-input-add-on next-input__add-on--before">{{ ecommerce_weight_unit() }}</span> <input type="text" class="next-input input-mask-number next-input--invisible" name="weight" value="{{ old('weight', $product ? $product->weight : ($originalProduct->weight ?? 0)) }}"> </div> </div> </div> <div class="col-md-3 col-md-6"> <div class="form-group"> <label>{{ trans('plugins/ecommerce::products.form.shipping.length') }} ({{ ecommerce_width_height_unit() }})</label> <div class="next-input--stylized"> <span class="next-input-add-on next-input__add-on--before">{{ ecommerce_width_height_unit() }}</span> <input type="text" class="next-input input-mask-number next-input--invisible" name="length" value="{{ old('length', $product ? $product->length : ($originalProduct->length ?? 0)) }}"> </div> </div> </div> <div class="col-md-3 col-md-6"> <div class="form-group"> <label>{{ trans('plugins/ecommerce::products.form.shipping.wide') }} ({{ ecommerce_width_height_unit() }})</label> <div class="next-input--stylized"> <span class="next-input-add-on next-input__add-on--before">{{ ecommerce_width_height_unit() }}</span> <input type="text" class="next-input input-mask-number next-input--invisible" name="wide" value="{{ old('wide', $product ? $product->wide : ($originalProduct->wide ?? 0)) }}"> </div> </div> </div> <div class="col-md-3 col-md-6"> <div class="form-group"> <label>{{ trans('plugins/ecommerce::products.form.shipping.height') }} ({{ ecommerce_width_height_unit() }})</label> <div class="next-input--stylized"> <span class="next-input-add-on next-input__add-on--before">{{ ecommerce_width_height_unit() }}</span> <input type="text" class="next-input input-mask-number next-input--invisible" name="height" value="{{ old('height', $product ? $product->height : ($originalProduct->height ?? 0)) }}" /> </div> </div> </div> </div> </div>
[-] product-variation-form.blade.php
[edit]
[-] selected-products-list.blade.php
[edit]
[-] panel-search-data.blade.php
[edit]
[+]
..
[-] attribute-sets.blade.php
[edit]
[-] add-product-attributes.blade.php
[edit]
[-] extras.blade.php
[edit]
[-] sort-order.blade.php
[edit]
[-] general.blade.php
[edit]
[-] configurable.blade.php
[edit]