@extends('adminlte::page') @section('title', 'Edit Communication') @section('content')

Edit Communication

@csrf @method('PUT')
@error('subject')
{{ $message }}
@enderror
@error('content')
{{ $message }}
@enderror
@error('recipient_type')
{{ $message }}
@enderror
@error('priority')
{{ $message }}
@enderror
@error('scheduled_at')
{{ $message }}
@enderror Leave empty to send immediately
Status: {{ ucfirst($communication->status) }}
@if($communication->sent_at) Sent: {{ $communication->sent_at->format('M d, Y H:i') }} @endif
@endsection @section('js') @endsection