@extends('admin.global-config.index') @section('global-config-content')
@csrf
@if ($errors->has('MAIL_MAILER')) {{ $errors->first('MAIL_MAILER') }} @endif
@if ($errors->has('MAIL_HOST')) {{ $errors->first('MAIL_HOST') }} @endif
@if ($errors->has('MAIL_PORT')) {{ $errors->first('MAIL_PORT') }} @endif
@if ($errors->has('MAIL_USERNAME')) {{ $errors->first('MAIL_USERNAME') }} @endif
@if ($errors->has('MAIL_PASSWORD')) {{ $errors->first('MAIL_PASSWORD') }} @endif
@if ($errors->has('MAIL_ENCRYPTION')) {{ $errors->first('MAIL_ENCRYPTION') }} @endif
@if ($errors->has('MAIL_FROM_ADDRESS')) {{ $errors->first('MAIL_FROM_ADDRESS') }} @endif

{{ __('Test SMTP') }}

{{ __('Save the above form and test the SMTP details') }}

@endsection