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

{{ __('Edit Coupon') }}

@csrf @method('PUT')
@php $arr['title'] = 'Coupon Code'; $arr['id'] = 'name'; $arr['type'] = 'text'; $arr['placeholder'] = 'Coupon Code'; $arr['name'] = 'title'; $arr['value'] = $info->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['value'] = $info->count; $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['value'] = $info->slug; $arr['is_required'] = true; echo input($arr); @endphp
{{ __('Publish') }}

{{ __('Status') }}

@endsection @section('script') @endsection