@extends('layouts.contentLayoutMaster')
@php
$breadcrumbs = [[['link' => route('categories.index'), 'name' => "فئات العملاء"],['name' => 'مشاهدة']],['title'=> 'مشاهدة فئة العملاء']];
@endphp
@section('title', sprintf('مشاهدة معلومات الفئة : %s | %s',$category->id , $category->category_name))
@section('content')
@section('vendor-style')
@endsection
@component('components.forms.formCard',['title' => sprintf('مشاهدة الفئة رقم : %s - %s',$category->id , $category->category_name)])
{{ Form::model($category,['route' => ['categories.update',$category->id],'method'=> 'PUT' , 'class' => 'row','id' => 'adminform' , 'onsubmit' => 'showLoader()']) }}