@extends('core::base.layouts.master') @section('title') {{ translate('Smtp Configuration') }} @endsection @section('main_content')

{{ translate('Email Configuration') }}

@csrf
@if ($errors->has('mail_host'))
{{ $errors->first('mail_host') }}
@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_user_name'))
{{ $errors->first('mail_user_name') }}
@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'))
{{ $errors->first('mail_from') }}
@endif
@if ($errors->has('mail_from_name'))
{{ $errors->first('mail_from_name') }}
@endif
@if ($errors->has('mailgun_domain'))
{{ $errors->first('mailgun_domain') }}
@endif
@if ($errors->has('mailgun_secret'))
{{ $errors->first('mailgun_secret') }}
@endif

{{ translate('Send Test Mail') }}

@csrf
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
@if ($errors->has('message'))
{{ $errors->first('message') }}
@endif
@endsection @section('custom_scripts') @endsection