@extends('backend.layout.master-tailwind') @section('title', __('Enable Disable Chat Email')) @section('admin_styles') @endsection @section('content')

{{ __('Chat Email Notifications') }}

{{ __('Enable or disable email notifications sent on new chat messages') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Set to "Disable" to stop sending email notifications for new chat messages.') }}
@php $chatVal = get_static_option('chat_email_enable_disable') ?? ''; $chatLbl = $chatVal === 'enable' ? __('Enable') : ($chatVal === 'disable' ? __('Disable') : __('Select option')); @endphp
@csrf
@endsection @section('script') @endsection