@csrf
Please complete the form below in order to create a bulletin. The bulletin will be published as soon as it is saved and will be visible to all state members.
@include('partials.validation-errors', ['displayErrors' => true])
@error('subject')
{{ $message }}
@enderror
@error('body')
{{ $message }}
@enderror

@if($bulletin->attachment) @if(in_array($bulletin->attachment_extension, ['jpg', 'png', 'jpeg', 'gif', 'svg'])) {{ $bulletin->subject }} @elseif(in_array($bulletin->attachment_extension, ['pdf']))

Attachment: Download ({{ $bulletin->attachment }})

@elseif(in_array($bulletin->attachment_extension, ['doc', 'docx']))

Attachment: Download ({{ $bulletin->attachment }})

@endif @else No Attachment @endif @error('attachment')
{{ $message }}
@enderror