@include('header')
@if ($message = Session::get('success'))
Success
{{ $message }}
@endif

Report PDUs

Volunteer

@if($volunteer == '')
@csrf
@if($errors->has('organization')) {{ $errors->first('organization') }} @endif
@if($errors->has('volunteer_course')) {{ $errors->first('volunteer_course') }} @endif
@else
@csrf @method('PUT')
@error('organization') {{ $message }} @enderror
@error('volunteer_course') {{ $message }} @enderror
@endif
@include('footer')