{{-- /admin/settings/mail — SMTP credentials used by every Mailable in the codebase. Saved values are applied in AppServiceProvider::boot() via App\Support\MailConfig::apply() so they take effect immediately on every subsequent request — no .env edit required. --}}
{{ __('Admin · Project settings') }}

{{ __('Mail') }} {{ __('settings') }}.

{{ __('SMTP host, port, encryption and credentials. Saved values are applied at boot — every welcome / verification / receipt / support mailable in the system uses these without restarting the app.') }}

{{ __('All settings') }}
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
{{ __('Please fix the highlighted fields:') }}
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
{{-- SMTP credentials --}}
@csrf @method('PATCH')
{{ __('Outbound mail') }}

{{ __('SMTP credentials') }}

{{ __('used everywhere') }}
{{-- Send test --}}
{{ __('Verify') }}

{{ __('Send a test email') }}

{{ __('Sends one short message with the currently-saved SMTP credentials. Use this to verify host / port / login before relying on the rest of the system.') }}

@csrf