@extends('layouts.app') @section('content')
@csrf {{-- Announcement Details --}}
{{ __('Announcement Details') }}

{{-- Type / Purpose --}}
{{ __('Announcement Type (Select Only 1)') }}
@php $types = ['Update', 'Message', 'Offer', 'Alert', 'Notice', 'News', 'Other']; @endphp @foreach ($types as $type)
{{ $type }}
@endforeach

{{-- Select Users --}}
{{ __('Select Users') }}
@foreach ($users as $user)
@endforeach
@endsection @push('style') @endpush @push('scripts') @endpush