@extends('settings.default') @push('css_lib') {{--dropzone--}} @endpush @section('settings_title', 'Mail') @section('settings_content') @include('flash::message')
{!! Form::open(['url' => ['settings/update'], 'method' => 'patch']) !!}
{!! Form::hidden('mail_driver','smtp') !!}
{!! Form::label('mail_host', 'Mail host', ['class' => 'col-4 control-label text-right']) !!}
{!! Form::text('mail_host', setting('mail_host'), ['class' => 'form-control' ,'placeholder' =>'Mail host']) !!}
Insert the mail host address
{!! Form::label('mail_port', 'Mail Port', ['class' => 'col-4 control-label text-right']) !!}
{!! Form::text('mail_port', setting('mail_port'), ['class' => 'form-control' ,'placeholder' =>'Port Number']) !!}
Insert the mail port
{!! Form::label('mail_encryption', "Mail encryption",['class' => 'col-4 control-label text-right']) !!}
{!! Form::select('mail_encryption', ['tls'=>'TLS', 'ssl'=>'SSL'], setting('mail_encryption'), ['class' => 'select2 form-control']) !!}
Select the mail encryption TLS / SSL
{!! Form::label('mail_username', 'Username', ['class' => 'col-4 control-label text-right']) !!}
{!! Form::text('mail_username', setting('mail_username'), ['class' => 'form-control','placeholder' =>'Mail Username']) !!}
Insert the mail username most of services use email as username
{!! Form::label('mail_password', "Mail Password", ['class' => 'col-4 control-label text-right']) !!}
{!! Form::password('mail_password', ['class' => 'form-control','placeholder' =>'*********']) !!}
Insert the mail password
{!! Form::label('mail_from_address', "Sender Email", ['class' => 'col-4 control-label text-right']) !!}
{!! Form::text('mail_from_address', setting('mail_from_address'), ['class' => 'form-control','placeholder' =>'test@mail.com']) !!}
Insert the sender email address
{!! Form::label('mail_from_name', "Sender Name", ['class' => 'col-4 control-label text-right']) !!}
{!! Form::text('mail_from_name', setting('mail_from_name'), ['class' => 'form-control', 'placeholder' =>'Sender Name']) !!}
Insert the sender Name
Cancel
{!! Form::close() !!}
@endsection @push('scripts_lib')