@extends('layouts.app') @section('page-title', __('Edit Field Report')) @section('page-heading', __('Edit Field Report')) @section('styles') @endsection @section('content')
@include('partials.messages')
@csrf @method('PUT')
Report Details
@error('title')
{{ $message }}
@enderror
@if(!auth()->user()->isAdmin() && !auth()->user()->hasRole('Regional_Coordinator')) @endif @error('county_id')
{{ $message }}
@enderror
@error('summary')
{{ $message }}
@enderror
@error('recommendations')
{{ $message }}
@enderror
Attachments
@if($report->attachments->count() > 0)
Current Files
@foreach($report->attachments as $attachment)
{{ $attachment->original_name }}
{{ number_format($attachment->file_size / 1024, 2) }} KB
@endforeach
@endif

Click to upload new files or drag and drop

Maximum file size: 2MB
@error('attachments')
{{ $message }}
@enderror
Cancel
@endsection @push('scripts') @endpush