@extends('layouts.app') @section('title', 'Email Settings') @section('content')

Email Settings

{{-- Configuration Status / Instructions --}}

Configure the application's outgoing email settings below. Select a mail driver and fill in the required credentials. Settings are stored securely in the database. Changes require clearing the configuration cache.

{{-- Form Container --}}
{{-- Form points to email.update route --}}
@csrf @method('PUT') {{-- Mailer Selection --}}

Select the service used to send emails.

@error('mail_mailer')

{{ $message }}

@enderror
{{-- Common From Address/Name --}}
Sender Information
@error('mail_from_address')

{{ $message }}

@enderror
@error('mail_from_name')

{{ $message }}

@enderror
{{-- SMTP Settings (Conditional) --}}
SMTP Settings
@error('mail_host') ... @enderror
@error('mail_port') ... @enderror
@error('mail_username') ... @enderror
@error('mail_password') ... @enderror
@error('mail_encryption') ... @enderror
{{-- Mailgun Settings (Conditional) --}}
Mailgun Settings
@error('mailgun_domain') ... @enderror
@error('mailgun_secret') ... @enderror
@error('mailgun_endpoint') ... @enderror
{{-- SES Settings (Conditional) --}}
Amazon SES Settings
@error('ses_key') ... @enderror
@error('ses_secret') ... @enderror
@error('ses_region') ... @enderror
{{-- Postmark Settings (Conditional) --}}
Postmark Settings
@error('postmark_token') ... @enderror
{{-- Submit Button --}}
{{-- Send Test Email Form (Separate) --}}

Send Test Email

@csrf
@error('test_email_recipient')

{{ $message }}

@enderror
@endsection