@php use Illuminate\Support\Str; @endphp @extends('layouts.master') @section('title') Create {{ $title }} @endsection @section('css') @endsection @section('body') @endsection @section('content') @component('components.breadcrumb') @slot('page_title') Create {{ $title }} @endslot @slot('subtitle') {{ Str::ucfirst(Str::plural($title)) }} @endslot @endcomponent

Create {{ Str::ucfirst($title) }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
( Allowed formats: JPG, JPEG, PNG, GIF — Max size: 0.5 MB (512 KB) ) isMethod('post') ? 'required' : '' }} required>
@endsection @section('scripts') @endsection