@extends('app.layout') @section('sub_content')
@if (session('success')) @endif @if (session('error')) @endif
@include('app.settings.nav')
@method('PATCH') @csrf
{{ __('Protocol') }}
{{ __('From Name') }}
@if ($errors->has('MAIL_FROM_NAME')) {{ $errors->first('MAIL_FROM_NAME') }} @endif
{{ __('From Address') }}
@if ($errors->has('MAIL_FROM_ADDRESS')) {{ $errors->first('MAIL_FROM_ADDRESS') }} @endif
{{ __('SMTP Host') }}
@if ($errors->has('MAIL_HOST')) {{ $errors->first('MAIL_HOST') }} @endif
{{ __('SMTP Port') }}
@if ($errors->has('MAIL_PORT')) {{ $errors->first('MAIL_PORT') }} @endif
{{ __('SMTP Username') }}
@if ($errors->has('MAIL_USERNAME')) {{ $errors->first('MAIL_USERNAME') }} @endif
{{ __('SMTP Password') }}
@if ($errors->has('MAIL_PASSWORD')) {{ $errors->first('MAIL_PASSWORD') }} @endif
{{ __('Encryption') }}
@if ($errors->has('MAIL_ENCRYPTION')) {{ $errors->first('MAIL_ENCRYPTION') }} @endif
@if (session('test_email_success')) @endif @if (session('test_email_error')) @endif
@method('PATCH') @csrf
{{ __('Send a Test Email') }}
{{ __('Send To') }}
@if ($errors->has('send_to_email')) {{ $errors->first('send_to_email') }} @endif
@endsection