@extends('layouts.app') @section('page-title', 'Edit General Report') @section('page-heading', 'Edit General Report') @section('styles') @endsection @section('content')
@include('partials.messages')
@csrf @method('PUT')
Report Details
@error('category')
{{ $message }}
@enderror
@error('subcategory')
{{ $message }}
@enderror
@error('title')
{{ $message }}
@enderror
@error('county_id')
{{ $message }}
@enderror
Attachments
@if($report->attachments->count())
Current Attachments
@foreach($report->attachments as $attachment)
{{ Str::limit($attachment->original_name, 20) }}
@endforeach
@endif

Click to add files

Maximum file size: 2MB
@push('scripts') @endpush @endsection