@extends('layouts.app') @section('page-title', 'Edit Back to Office Report') @section('page-heading', 'Edit Back to Office Report') @section('content')
@include('partials.messages')
@csrf @method('PUT')
Back to Office Report

Capture date of activity

PARTICIPANTS (Show numbers by age, gender, Disability & VMGs)
@foreach(['Male', 'Female', 'Disability', 'VMGs'] as $cat) @for($i=0; $i<3; $i++) @endfor @endforeach
Category 18–35 Years 35–59 Years Above 60 Years Total
{{ $cat }}

NARRATIVE SECTIONS

BUDGET / EXPENDITURE
@if(isset($report->budget['item']) && is_array($report->budget['item'])) @foreach($report->budget['item'] as $i => $item) @endforeach @else @endif
Item Planned Actual Variance Comment
Report Info
@error('county_id')
{{ $message }}
@enderror
{{-- ======================================================= --}} {{-- ANNEXES — NO nested tags. Uses fetch() instead. --}} {{-- ======================================================= --}}
Annexes
@if($report->attachments->count())
Current Annexes
@foreach($report->attachments as $attachment)
{{ Str::limit($attachment->original_name, 15) }}
{{-- type="button" — does NOT submit the parent form --}}
@endforeach
@endif

Click to upload

Cancel
@endsection