@extends('admin.layouts.app') @section('title') تعديل بيانات {!!$department->name_ar!!} @endsection @section('header') @endsection @section('breadcrumb') @php($breadcrumbs=['اقسام العمل'=>route('home'),'تعديل'=>route('departments.edit',$department->id)]) @includeWhen(isset($breadcrumbs),'admin.layouts._breadcrumb', ['breadcrumbs' =>$breadcrumbs ]) @endsection @section('content')

تعديل {!! $department->name_ar!!}

{!! Form::model($department,['method'=>'put','route'=>['departments.update',$department->id],'files'=>'true','class'=>'m-form m-form--fit m-form--label-align-right'])!!} @include('admin.departments._form')
{!!Form::close()!!}
@endsection @section('scripts') @endsection