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

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

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
( Allowed formats: JPG, JPEG, PNG, GIF — Max size: 0.5 MB (512 KB) ) @if ($record->image)
Profile Image
@endif
@endsection @section('scripts') @endsection