@extends('layouts.contentLayoutMaster')
@php
$breadcrumbs = [[['link' => route('special-groups.index'), 'name' => "المجموعات الخاصة"], ['link' => route('special-groups.edit',$special_group), 'name' => "تعديل معلومات المجموعة الخاصة"]],['title'=> 'تعديل']];
@endphp
@section('title', 'ادارة المجموعة الخاصة')
@section('content')
@component('components.forms.formCard',['title' => sprintf('تعديل معلومات المجموعة الخاصة : %s ', $special_group->group_name)])
{!! Form::model($special_group, ['method' => 'PUT', 'onsubmit' => 'showLoader()','route' => ['special-groups.update', $special_group->id]]) !!}