{{ csrf_field() }}
{{ __('Sender Name') }} :
@if ($errors->has('email'))
{{ $errors->first('MAIL_FROM_NAME') }}
@endif
{{ __('Mail Driver') }} : {{ __('(ex. smtp, send mail, mail)') }}
@if ($errors->has('MAIL_DRIVER'))
{{ $errors->first('MAIL_DRIVER') }}
@endif
{{ __('Mail Host') }} :
*
{{ __('(ex. smtp.yourdomain.com)') }}
@if ($errors->has('MAIL_HOST'))
{{ $errors->first('MAIL_HOST') }}
@endif
{{ __('Mail Port') }} :
*
{{ __('(ex. 2525,467)') }}
@if ($errors->has('MAIL_PORT'))
{{ $errors->first('MAIL_PORT') }}
@endif
{{ __('Mail Address') }} :
*
@if ($errors->has('MAIL_USERNAME'))
{{ $errors->first('MAIL_FROM_ADDRESS') }}
@endif
{{ __('Mail User Name') }} :
*
@if ($errors->has('MAIL_USERNAME'))
{{ $errors->first('MAIL_USERNAME') }}
@endif
{{ __('Mail Password') }} :
*
@if($errors->has('MAIL_PASSWORD'))
{{ $errors->first('MAIL_PASSWORD') }}
@endif
{{ __('Mail Encryption') }} : {{ __('(ex. TLS/SSL)') }}
@if ($errors->has('MAIL_ENCRYPTION'))
{{ $errors->first('MAIL_ENCRYPTION') }}
@endif
{{ __("Reset")}}
{{ __("Save")}}