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

{{ $setting->from_address ?: 'Not set' }}

From Address

{{ $setting->last_tested_at ? $setting->last_tested_at->diffForHumans() : 'Never tested' }}

{{ strtoupper($setting->transport ?? 'smtp') }}

Transport

{{ $setting->active ? 'Active' : 'Inactive' }}

Email Configuration

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
This setup supports SMTP.
Leave blank to keep current password.
Tip: You can also send a standalone test below without saving again.

@csrf
A queued job will send a simple test email using the current active settings.
@endsection @push('script') @endpush