@extends('layouts.app') @section('title') Add Package @stop @section('breadcrumb') @stop @section('css') @endsection @section('content')
@if ($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Test SMTP Setting

Note*: On success receiver email will receive a dumy mail


{{--

Add Detail

--}} {{--
--}}
@csrf
@if ($errors->has('host')) {{ $errors->first('host') }} @endif
@if ($errors->has('host')) {{ $errors->first('host') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('fromusername')) {{ $errors->first('fromusername') }} @endif
@if ($errors->has('fromemail')) {{ $errors->first('fromemail') }} @endif
@if ($errors->has('rece_email')) {{ $errors->first('rece_email') }} @endif
@stop @section('js') @stop