@extends('layouts.admin') @section('title', 'Edit Training Brochure') @section('content_header')

Edit Training Brochure

@stop @section('content')

Update Brochure

@csrf @method('DELETE')
Current Brochure

Title: {{ $brochure->title }}

Status: {{ ucfirst($brochure->status) }}

Uploaded: {{ $brochure->created_at->format('M d, Y h:i A') }}

@csrf @method('PATCH')
@csrf @method('PUT')
@error('title') {{ $message }} @enderror Maximum 255 characters
@error('file')
{{ $message }}
@enderror Only PDF files allowed, maximum 10MB. Leave empty to keep current file.
@stop @section('js') @endsection