@extends('default.layout') @section('content')

{{{ isset($config) ? "Editar": "Cadastrar" }}} Email

@csrf
@if(getenv("SERVIDOR_WEB") == "0")

*Atenção realize os teste de envio de email com a aplicação em servidor

@endif @if($empresa->usar_email_proprio)

Atualmente sua configuração esta marcada para utilizar o email configurado nesta tela

@else

Atualmente sua configuração esta marcada para utilizar o email configurado em nosso servidor {{getenv("MAIL_USERNAME")}}

@endif
@if($errors->has('nome'))
{{ $errors->first('nome') }}
@endif
@if($errors->has('host'))
{{ $errors->first('host') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('senha'))
{{ $errors->first('senha') }}
@endif
@if($errors->has('porta'))
{{ $errors->first('porta') }}
@endif


@section('javascript') @endsection @endsection