@extends('layouts.app') @section('site_title', formatTitle([__('Announcements'), __('Settings'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Settings')], ]])

{{ __('Announcements') }}

{{ __('Announcements') }}
@include('shared.message')
{{ __('Announcements used to display important messages to guests and users on the website.') }}
@csrf
@if ($errors->has('announcement_guest')) {{ $errors->first('announcement_guest') }} @endif {{ __('Enable or disable the announcement displayed to visitors who are not logged in.') }}
@if ($errors->has('announcement_guest_content')) {{ $errors->first('announcement_guest_content') }} @endif {{ __('The message content displayed in the announcement.') }} {{ __('Supports HTML.') }}
@if ($errors->has('announcement_guest_type')) {{ $errors->first('announcement_guest_type') }} @endif {{ __('The type of the announcement.') }}
@if ($errors->has('announcement_user')) {{ $errors->first('announcement_user') }} @endif {{ __('Enable or disable the announcement displayed to logged-in users.') }}
@if ($errors->has('announcement_user_content')) {{ $errors->first('announcement_user_content') }} @endif {{ __('The message content displayed in the announcement.') }} {{ __('Supports HTML.') }}
@if ($errors->has('announcement_user_type')) {{ $errors->first('announcement_user_type') }} @endif {{ __('The type of the announcement.') }}
@endsection @include('shared.sidebars.admin')