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