@extends('layouts.contentLayoutMaster')
@php
$breadcrumbs = [[['link' => route('coupons.index'), 'name' => "قسائم الخصم"],['link' => route('coupons.edit',$coupon), 'name' => "تعديل قسيمة $coupon->code" ]],['title'=> 'تعديل قسيمة']];
@endphp
@section('vendor-style')
@endsection
@section('page-style')
@endsection
@section('content')
@component('components.forms.formCard',['title' =>" تعديل قسيمة الخصم ($coupon->code)" ])
{!! Form::model($coupon, ['method' => 'PUT', 'onsubmit' => 'showLoader()','route' => ['coupons.update', $coupon->id]]) !!}