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

Errors

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

Edit SMTP Setting

Update the information


{{--

Add Detail

--}} {{--
--}}
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @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('status')) {{ $errors->first('status') }} @endif
@stop @section('js') @stop