{!! Form::open(['url' => action([\App\Http\Controllers\DiscountController::class, 'store']), 'method' => 'post', 'id' => 'discount_form' ]) !!}

@lang( 'messages.add' )

{!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'unit.name' ) ]); !!} {!! Form::label('name', __( 'unit.name' ) . ':*') !!}
{!! Form::select('location_id', $locations, null, ['placeholder' => __('messages.please_select'),'id'=>'location_id', 'class' => 'form-control select2', 'required']); !!} {!! Form::label('location_id', __('sale.location') . ':*') !!}
{!! Form::label('variation_ids', __('report.products') . ':') !!} {!! Form::select('variation_ids[]', [], null, ['id' => "variation_ids", 'class' => 'form-control', 'multiple']); !!}
{!! Form::select('brand_id', $brands, null, ['placeholder' => __('messages.please_select'),'id'=>'brand_id', 'class' => 'form-control select2']); !!} {!! Form::label('brand_id', __('product.brand') . ':') !!}
{!! Form::select('category_id', $categories, null, ['id'=>'category_id', 'placeholder' => __('messages.please_select'), 'class' => 'form-control select2']); !!} {!! Form::label('category_id', __('product.category') . ':') !!}
{!! Form::text('priority', null, ['class' => 'form-control input_number', 'required', 'placeholder' => __( 'lang_v1.priority' ) ]); !!} {!! Form::label('priority', __( 'lang_v1.priority' ) . ':') !!} @show_tooltip(__('lang_v1.discount_priority_help'))
{!! Form::select('discount_type', ['fixed' => __('lang_v1.fixed'), 'percentage' => __('lang_v1.percentage')], null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control select2', 'required']); !!} {!! Form::label('discount_type', __('sale.discount_type') . ':*') !!}
{!! Form::text('discount_amount', null, ['class' => 'form-control input_number', 'required', 'placeholder' => __( 'sale.discount_amount' ) ]); !!} {!! Form::label('discount_amount', __( 'sale.discount_amount' ) . ':*') !!}
{!! Form::text('starts_at', null, ['id' => 'starts_at','class' => 'form-control discount_date', 'required', 'placeholder' => __( 'lang_v1.starts_at' ), 'readonly' ]); !!} {!! Form::label('starts_at', __( 'lang_v1.starts_at' ) . ':') !!}
{!! Form::text('ends_at', null, ['id' => 'ends_at','class' => 'form-control discount_date', 'required', 'placeholder' => __( 'lang_v1.ends_at' ), 'readonly' ]); !!} {!! Form::label('ends_at', __( 'lang_v1.ends_at' ) . ':') !!}
{!! Form::label('spg', __('lang_v1.selling_price_group') . ':') !!}
{!! Form::close() !!}