@extends('backend.layouts.app') @section('content')

Edit Multi Class Discounts

@foreach($editDiscounts as $editDiscount)
{{ csrf_field() }}
@if ($errors->has('class_name')) {{ $errors->first('class_name') }} @endif
@if ($errors->has('no_of_classes')) {{ $errors->first('no_of_classes') }} @endif


@if($editDiscount->multiclass_discount_all_programs == "1")
@elseif($editDiscount->multiclass_discount_all_programs == "0")
@if ($errors->has('coupon_eligible_program[]')) {{ $errors->first('coupon_eligible_program[]') }} @endif
@endif
@if($editDiscount->multiclass_discount_amount_type == 1)
Fixed Percentage
@else
Fixed Percentage
@endif
$
@if ($errors->has('discount_amount')) {{ $errors->first('discount_amount') }} @endif
 



@endforeach
@stop