{!! Form::label('name', trans('global.discounts.fields.name').'*', ['class' => 'control-label form-label']) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control', 'placeholder' => 'Name', 'required' => '']) !!}

@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
{!! Form::label('discount', trans('global.discounts.fields.discount').'', ['class' => 'control-label form-label']) !!}
{!! Form::number('discount', old('discount'), ['class' => 'form-control','min'=>'0','step'=>'0.01', 'placeholder' => 'Discount']) !!}

@if($errors->has('discount'))

{{ $errors->first('discount') }}

@endif
{!! Form::label('discount_type', trans('global.discounts.fields.discount-type').'', ['class' => 'control-label']) !!} {!! Form::select('discount_type', $enum_discount_type, old('discount_type'), ['class' => 'form-control select2']) !!}

@if($errors->has('discount_type'))

{{ $errors->first('discount_type') }}

@endif
{!! Form::label('description', trans('global.discounts.fields.description').'', ['class' => 'control-label']) !!} {!! Form::textarea('description', old('description'), ['class' => 'form-control ', 'placeholder' => 'Description','rows'=>'3']) !!}

@if($errors->has('description'))

{{ $errors->first('description') }}

@endif