@extends('layouts.app') @section('title', 'Edit ' . $type->name) @section('page-title', 'Edit Document Type') @section('breadcrumbs') @include('layouts.components.breadcrumbs', ['items' => [['label' => 'Admin', 'url' => '/admin/dashboard'], ['label' => 'Document Types', 'url' => route('admin.document-types.index')], ['label' => $type->name]]]) @endsection @section('content')
@csrf @method('PUT')

{{ $type->name }}

@include('admin.document-types._form', ['type' => $type])
Cancel
@endsection