@extends('layouts.app') @section('title', 'Post Notice') @section('breadcrumbs') @endsection @section('content')

Post Notice

Share news, updates, or announcements with your team

@csrf
{{-- Title --}}
@error('title')

{{ $message }}

@enderror
{{-- Type --}}
@error('type')

{{ $message }}

@enderror
{{-- Content --}}

You can use line breaks to format your content.

@error('content')

{{ $message }}

@enderror
{{-- Pin (Company Admin only) --}} @if(auth()->user()->role === 'company_admin')
(Pinned notices always appear at the top)
@endif {{-- Schedule / Expiry --}}
{{-- Publish Date --}}

Leave empty to publish immediately

@error('published_at')

{{ $message }}

@enderror
{{-- Expiry Date --}}

Notice will be hidden after this date

@error('expires_at')

{{ $message }}

@enderror
{{-- Footer --}}
Cancel
@endsection