@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Setup SMTP Settings') }}

@csrf
{{ __('SMTP Host') }}
@error('smtp-host')

{{ $errors->first('smtp-host') }}

@enderror
{{ __('SMTP Port') }}
@error('smtp-port')

{{ $errors->first('smtp-port') }}

@enderror
{{ __('SMTP Username') }}
@error('smtp-username')

{{ $errors->first('smtp-username') }}

@enderror
{{ __('SMTP Password') }}
@error('smtp-password')

{{ $errors->first('smtp-password') }}

@enderror
{{ __('Sender Email Address') }}
@error('smtp-from')

{{ $errors->first('smtp-from') }}

@enderror
{{ __('Sender Name') }}
@error('smtp-name')

{{ $errors->first('smtp-name') }}

@enderror
{{ __('SMTP Encryption') }}
@endsection @section('js') @endsection