@extends('admin.layout') @section('content')
@csrf
{{__('Mail From Admin')}}
@csrf
@if ($errors->has('is_smtp'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection