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

Report PDUs

Create Content

@if($content == '')
@csrf
@if($errors->has('organization')) {{ $errors->first('organization') }} @endif
@if($errors->has('title')) {{ $errors->first('title') }} @endif
@if($errors->has('description')) {{ $errors->first('description') }} @endif
@else
@csrf @method('PUT')
@endif
@include('footer')