@extends('layouts.app') @section('title', __('sale.discount')) @section('content')

Channel Partner Discount

{{--

Bulk Discounts

@can('brand.create') @endcan
--}}
@can('brand.view') {!! Form::open(['url' => action([\App\Http\Controllers\ChannelPartnerDiscountController::class, 'store']), 'method' => 'post']) !!}
{!! Form::label('starts_at', __( 'lang_v1.starts_at' ) . ':*') !!} {!! Form::text('starts_at', null, ['class' => 'form-control bulk_discount_date', 'required', 'placeholder' => __( 'lang_v1.starts_at' ), 'required' ]); !!}
{!! Form::label('ends_at', __( 'lang_v1.ends_at' ) . ':*') !!} {!! Form::text('ends_at', null, ['class' => 'form-control bulk_discount_date', 'required', 'placeholder' => __( 'lang_v1.ends_at' ), 'required' ]); !!}
{!! Form::label('bussines_type', 'Bussines Type:*') !!} {!! Form::select('bussines_type', $bussines_type, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control select2 bussines_type', 'required']); !!}
{!! Form::label('location_id', __('sale.location') . ':*') !!} {!! Form::select('location_id', $locations, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control select2 location_id', 'required']); !!}
{!! Form::label('location_id', 'Discount On:*') !!} {!! Form::select('discount_on', $discount_on, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control discount_on select2', 'required']); !!}
{!! Form::label('brand_id', __('product.brand') . ':') !!} {!! Form::select('brand_id', $brands, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control brand_id select2']); !!}
{!! Form::label('discount','Discount:') !!} {!! Form::text('discount_amount', null, ['class' => 'form-control input_number discount_amount', 'placeholder' => 'discount%']); !!}
{!! Form::close() !!} @endcan
@stop @section('javascript') @endsection