{!! Form::open(['url' => action('PromotionController@update', [$promotion->id]), 'method' => 'PUT', 'id' => 'update_promotion']) !!}

Edit Prmotion

{!! Form::label('status', 'Promotion Status' . ':*') !!} status == 1 ? ' checked' : '') }}>
{!! Form::label('type', 'Select Promotion' . ':*') !!}
{!! Form::label('name', 'Offer Name' . ':*') !!} {!! Form::text('name', $promotion->name, ['class' => 'form-control', 'required', 'placeholder' => 'Offer Name' ]); !!}
@if (is_null($default_location))
{!! Form::label('location_id', 'Select Location' . ':*') !!}
@endif
{!! Form::label('customer_group_id', 'Select Customer Group' . ':') !!}
{!! Form::label('preference_weighatage', 'Preference Weightage' . ':*') !!} {!! Form::text('preference_weighatage', $promotion->preference_weighatage, ['class' => 'form-control', 'required', 'placeholder' => 'Preference Weightage' ]); !!}

Buy Product

Product Quantity
{!! Form::number('buy_product_quantity', $promotion->buy_product_quantity, ['class' => 'form-control', 'placeholder' => 'Buy Product Quantity']); !!}

Get Product

Product Quantity
{!! Form::number('get_product_quantity', $promotion->get_product_quantity, ['class' => 'form-control', 'placeholder' => 'Get Product Quantity']); !!}
{!! Form::label('category_id', 'Select Category' . ':*') !!}
{!! Form::label('discount_amount', __('sale.discount_amount') . ':*' ) !!} {!! Form::text('discount_amount', $promotion->discount_amount, ['class' => 'form-control', 'placeholder' => 'Discount Amount']); !!}
{!! Form::label('start_date', 'Start Date' . ':*') !!} {!! Form::Date('start_date', $promotion->start_date, ['class' => 'form-control', 'required', 'placeholder' => 'Start Date' ]); !!}
{!! Form::label('end_date', 'End Date' . ':*') !!} {!! Form::Date('end_date', $promotion->end_date, ['class' => 'form-control', 'required', 'placeholder' => 'End Date' ]); !!}
{!! Form::label('description', 'Description' . ':*') !!} {!! Form::text('description', $promotion->description, ['class' => 'form-control', 'required', 'placeholder' => 'Description' ]); !!}
{!! Form::close() !!}