@extends('layouts.app') @php $title = isset($promoCode)?'Edit Promo Code':'Create Promo Code'; @endphp @section('title', $title) @section('content') Promo Code Management Dashboard {{$title}} {{$title}} @csrf @if(isset($promoCode)) @method('PUT') @endif Code * Discount Percentage * Valid From Date * Valid To Date * Status status == 1 ? 'selected' : '' }}>Active status == 0 ? 'selected' : '' }}>In Active Description {{ old('description', $promoCode->description ?? '') }} Description (In Arabic) {{ old('description_ar', $promoCode->description_ar ?? '') }} @endsection @section('scripts') @endsection