@extends('layouts.app') @section('title', 'Edit ' . $template->name) @section('page-title', 'Edit Department Template') @section('breadcrumbs') @include('layouts.components.breadcrumbs', ['items' => [['label' => 'Admin', 'url' => '/admin/dashboard'], ['label' => 'Dept Templates', 'url' => route('admin.department-templates.index')], ['label' => $template->name]]]) @endsection @section('content')
@csrf @method('PUT')

{{ $template->name }}

@include('admin.department-templates._form', ['template' => $template])
Cancel
@endsection