@extends('layouts.app') @section('title') Compose Message @endsection @section('content') @php $user_role = Auth::user()->user_role; @endphp

Mailbox {{ isset($unreadCount) ? $unreadCount : 0 }} new messages

Compose New Message

@csrf @if(isset($draftData['id'])) @endif
@if(isset($draftData['attachments']) && count($draftData['attachments']) > 0)
This draft contains {{ count($draftData['attachments']) }} attachment(s). Note: Attachments cannot be restored from drafts. Please re-attach files if needed.
    @foreach($draftData['attachments'] as $attachment)
  • {{ $attachment['filename'] }}
  • @endforeach
@endif
Attachments

Max. 32MB per file. You can select multiple files.

@endsection