@extends('layouts.admin') @section('style') @endSection @php $store_detail = $store->storeDetails[0]; $demo_receipt_value = $store_detail['demo_receipt_value'] ?? []; @endphp @section('script') @endSection @section('content') @php $page_title = $title.' '.$store->name.''.isset($store_detail) ? ' - ' . $store_detail->label : ''.''; @endphp
@csrf

Details

@if ($errors->has('label')) {{ $errors->first('label') }} @endif
@if($errors->has('image')) {{ $errors->first('image') }} @endif
preview
@if($is_demo_receipt)
@if($errors->has('content')) {{ $errors->first('content') }} @endif
@if($errors->has('is_receipt')) {{ $errors->first('is_receipt') }} @endif
@if($errors->has('is_simulate_duplicate')) {{ $errors->first('is_simulate_duplicate') }} @endif
@if($errors->has('is_simulate_same_day_same_brand_receipt')) {{ $errors->first('is_simulate_same_day_same_brand_receipt') }} @endif
@if(config('sys.smart_receipt_active'))
@if($errors->has('is_simulate_pending_approval')) {{ $errors->first('is_simulate_pending_approval') }} @endif
@if($errors->has('reward_item')) {{ $errors->first('reward_item') }} @endif
@endif
@if($errors->has('merchant_actual')) {{ $errors->first('merchant_actual') }} @endif
@if($errors->has('merchant_demo')) {{ $errors->first('merchant_demo') }} @endif
@if($errors->has('products_actual')) {{ $errors->first('products_actual') }} @endif
@if($errors->has('products_demo')) {{ $errors->first('products_demo') }} @endif
@if($errors->has('transaction_amount')) {{ $errors->first('transaction_amount') }} @endif
@if(config('sys.smart_receipt_active'))
@if($errors->has('min_amount')) {{ $errors->first('min_amount') }} @endif
@endif @endif
@component('components.utility.modal_confirmation_delete') @endcomponent @endsection