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

{{ __('Mail From Admin') }}

{{ __('Mail From Admin') }}

@csrf
@if ($errors->has('is_smtp'))

{{ $errors->first('is_smtp') }}

@endif
@if ($errors->has('header_email'))

{{ $errors->first('header_email') }}

@endif
@if ($errors->has('smtp_host'))

{{ $errors->first('smtp_host') }}

@endif
@if ($errors->has('smtp_port'))

{{ $errors->first('smtp_port') }}

@endif
@if ($errors->has('email_encryption'))

{{ $errors->first('email_encryption') }}

@endif
@if ($errors->has('smtp_user'))

{{ $errors->first('smtp_user') }}

@endif
@if ($errors->has('smtp_pass'))

{{ $errors->first('smtp_pass') }}

@endif
@if ($errors->has('from_email'))

{{ $errors->first('from_email') }}

@endif
@if ($errors->has('from_name'))

{{ $errors->first('from_name') }}

@endif
@endsection