@extends('layouts.admin') @section('content')
{{ trans('cruds.setting.mailSetting.title') }}
@csrf
@if($errors->has('sender_name'))
{{ $errors->first('sender_name') }}
@endif {{ trans('cruds.setting.mailSetting.senderName_helper') }}
@if($errors->has('mail_host'))
{{ $errors->first('mail_host') }}
@endif {{ trans('cruds.setting.mailSetting.mailHost_helper') }}
@if($errors->has('mail_username'))
{{ $errors->first('mail_username') }}
@endif {{ trans('cruds.setting.mailSetting.mailUsername_helper') }}
@if($errors->has('mail_encryption'))
{{ $errors->first('mail_encryption') }}
@endif {{ trans('cruds.setting.mailSetting.mailEncryption_helper') }}
@if($errors->has('mail_driver'))
{{ $errors->first('mail_driver') }}
@endif {{ trans('cruds.setting.mailSetting.mailDriver_helper') }}
@if($errors->has('mail_port'))
{{ $errors->first('mail_port') }}
@endif {{ trans('cruds.setting.mailSetting.mailPort_helper') }}
@if($errors->has('mail_password'))
{{ $errors->first('mail_password') }}
@endif {{ trans('cruds.setting.mailSetting.mailPassword_helper') }}
@endsection