@extends('layouts.admin') @section('title', $coupon->exists ? 'Edit Coupon' : 'New Coupon') @section('content')

{{ $coupon->exists ? 'Edit' : 'New' }} Coupon

@csrf @if($coupon->exists) @method('PUT') @endif
@php $discounts = $coupon->productDiscounts ?? collect(); @endphp
@endsection