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

{{ __('Add New Coupon') }}

@csrf
@php $arr['title']= 'Coupon Code'; $arr['id']= 'name'; $arr['type']= 'text'; $arr['placeholder']= 'Coupon Code'; $arr['name']= 'title'; $arr['is_required'] = true; echo input($arr); $arr['title']= 'percent'; $arr['id']= 'percent'; $arr['type']= 'number'; $arr['placeholder']= 'Enter percent of amount'; $arr['name']= 'percent'; $arr['is_required'] = true; echo input($arr); $arr['title']= 'Expired Date'; $arr['id']= 'expired_date'; $arr['type']= 'date'; $arr['placeholder']= 'Enter Expired Date'; $arr['name']= 'expired_date'; $arr['is_required'] = true; echo input($arr); @endphp
{{ __('Publish') }}

{{ __('Status') }}

@endsection @section('script') @endsection