dbfdg
{{Form::model($coupon, array('route' => array('coupons.update', $coupon->id), 'method' => 'PUT')) }}
{{-- start for ai module--}}
@php
$settings = \App\Models\Utility::settings();
@endphp
@if(!empty($settings['chat_gpt_key']))
@endif
{{-- end for ai module--}}
{{Form::label('name',__('Name'),['class'=>'form-label'])}}
{{Form::text('name',null,array('class'=>'form-control font-style','required'=>'required'))}}
{{Form::label('discount',__('Discount'),['class'=>'form-label'])}}
{{Form::number('discount',null,array('class'=>'form-control','required'=>'required','step'=>'0.01'))}}
{{__('Note: Discount in Percentage')}}
{{Form::label('limit',__('Limit'),['class'=>'form-label'])}}
{{Form::number('limit',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('code',__('Code'),['class'=>'form-label'])}}
{{Form::text('code',null,array('class'=>'form-control','required'=>'required'))}}
{{ Form::close() }}