@extends('layouts.admin') @section('title', 'Edit Announcement') @section('page-title', 'Edit Announcement') @section('content')
Back to Notifications
Edit Compose Notification
@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('category')
{{ $message }}
@enderror
PDF or Images up to 2MB. Leave empty to keep current attachment. @if($notification->attachment_path)
Current: {{ basename($notification->attachment_path) }}
@endif @error('attachment')
{{ $message }}
@enderror
Target Audience Targeting
@php $scheduleDate = $notification->scheduled_at ? date('Y-m-d', strtotime($notification->scheduled_at)) : ''; $scheduleTime = $notification->scheduled_at ? date('H:i', strtotime($notification->scheduled_at)) : ''; @endphp
Schedule Notification (Optional)

Leave empty to deliver immediately.

@endsection @section('scripts') @endsection