Request Additional Information

Request more details from the expectant mother regarding their clinic change request

Request Summary

Expectant Mother

{{ $request->user->name }}

Request ID

#{{ $request->uuid }}

Current Clinic

{{ $request->currentClinic->name }}

Requested Clinic

{{ $request->requestedClinic->name }}

Reason for Change

{{ $request->reason }}

Information Request Message

@error('infoRequestMessage')

{{ $message }}

@else

Clearly explain what information is needed and why

@enderror

{{ strlen($infoRequestMessage) }}/500

What happens next?

  • The expectant mother will be notified via email
  • Request status will change to "Information Requested"
  • Mother can respond with the requested information
  • You'll be notified when they respond
@if($request->messages->count() > 0)

Previous Messages

@foreach($request->messages as $message)

{{ $message->author->name }}

{{ $message->created_at->format('d M Y, h:i A') }}

{{ $message->message }}

@endforeach
@endif