@extends('layouts.master') @section('title') {{ $title }} @endsection @section('css') @endsection @section('body') @endsection @section('content') @component('components.breadcrumb') @slot('page_title') {{ $title }} @endslot @slot('subtitle') {{ $plural }} @endslot @endcomponent

{{ $title }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection @section('scripts') @endsection