@extends('admin.adminlayouts.adminlayout') @section('head') @stop @section('mainarea')

{{$pageTitle}}

{{--INLCUDE ERROR MESSAGE BOX--}} {{--END ERROR MESSAGE BOX--}}
{!! Form::model($setting, ['method' => 'POST','class'=>'form-horizontal', 'id' => 'updateSettings']) !!}
@if($setting->mail_driver =='smtp') @if($setting->verified)
{{__('messages.smtpSuccess')}}
@else
{{__('messages.smtpError')}}
@endif @endif
{!! Form::select('mail_encryption', ['' => 'None', 'tls' => 'TLS', 'ssl' => 'SSL'], \old('mail_encryption'),['class'=>'form-control']) !!}
{!! Form::close() !!}
@stop @section('footerjs') @stop