@extends('adminlte::page') @section('title', config('adminlte.title') . " | Edit {$settings->service}") @section('content_header')

Edit System Setting

@stop @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($settings->service == 'Announcement')
Announcement Instructions

To create an announcement, you can specify the type of alert using the following keys:

Key: [success], [info], [warning], [danger].

Examples:

  • [success] System update completed successfully.
  • [info] New features have been added to the dashboard.
  • [warning] Scheduled maintenance on 25/06/2024 from 02:00 to 04:00.
  • [danger] Server downtime expected on 20/06/2024 at 09:00.

If no key is specified, the default alert type will be info.

@endif
@csrf @method('PUT')
@error('service') {{ $message }} @enderror
service != 'Announcement') readonly @endif>
@error('status') {{ $message }} @enderror
@stop @section('footer')   @stop