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

Report PDUs

Read

@if($read =='')
@csrf
@if($errors->has('author')) {{ $errors->first('author') }} @endif
@if($errors->has('title')) {{ $errors->first('title') }} @endif
@if($errors->has('description')) {{ $errors->first('description') }} @endif
@if($errors->has('url')) {{ $errors->first('url') }} @endif
@if($errors->has('date_started')) {{ $errors->first('date_started') }} @endif
@if($errors->has('date_completed')) {{ $errors->first('date_completed') }} @endif
@else @csrf @method('PUT')
@if($errors->has('author')) {{ $errors->first('author') }} @endif
@if($errors->has('title')) {{ $errors->first('title') }} @endif
@if($errors->has('description')) {{ $errors->first('description') }} @endif
@if($errors->has('url')) {{ $errors->first('url') }} @endif
@if($errors->has('date_started')) {{ $errors->first('date_started') }} @endif
@if($errors->has('date_completed')) {{ $errors->first('date_completed') }} @endif
@endif
@include('footer')