@extends('admin.layouts.master') @section('title', __('email_setting')) @section('content')

{{__('email_settings') }}

{{__('server_configuration') }}
@can('email.test') @endcan
@csrf @method('put')
@if($errors->has('smtp_server_address'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@can('email.server-configuration.update')
@endcan
@endsection