{!! Form::label('MAIL_DRIVER', __('superadmin::lang.mail_driver') . ':') !!} {!! Form::select('MAIL_DRIVER', $mail_drivers, $default_values['MAIL_DRIVER'], ['class' => 'form-control']); !!}
{!! Form::label('MAIL_HOST', __('superadmin::lang.mail_host') . ':') !!} {!! Form::text('MAIL_HOST', $default_values['MAIL_HOST'], ['class' => 'form-control','placeholder' => __('superadmin::lang.mail_host')]); !!}
{!! Form::label('MAIL_PORT', __('superadmin::lang.mail_port') . ':') !!} {!! Form::text('MAIL_PORT', $default_values['MAIL_PORT'], ['class' => 'form-control','placeholder' => __('superadmin::lang.mail_port')]); !!}
{!! Form::label('MAIL_USERNAME', __('superadmin::lang.mail_username') . ':') !!} {!! Form::text('MAIL_USERNAME', $default_values['MAIL_USERNAME'], ['class' => 'form-control','placeholder' => __('superadmin::lang.mail_username')]); !!}
{!! Form::label('MAIL_PASSWORD', __('superadmin::lang.mail_password') . ':') !!} {!! Form::text('MAIL_PASSWORD', $default_values['MAIL_PASSWORD'], ['class' => 'form-control','placeholder' => __('superadmin::lang.mail_password')]); !!}
{!! Form::label('MAIL_ENCRYPTION', __('superadmin::lang.mail_encryption') . ':') !!} {!! Form::text('MAIL_ENCRYPTION', $default_values['MAIL_ENCRYPTION'], ['class' => 'form-control','placeholder' => __('superadmin::lang.mail_encryption_place')]); !!}
{!! Form::label('MAIL_FROM_ADDRESS', __('superadmin::lang.mail_from_address') . ':') !!} {!! Form::email('MAIL_FROM_ADDRESS', $default_values['MAIL_FROM_ADDRESS'], ['class' => 'form-control','placeholder' => __('superadmin::lang.mail_from_address')]); !!}
{!! Form::label('MAIL_FROM_NAME', __('superadmin::lang.mail_from_name') . ':') !!} {!! Form::text('MAIL_FROM_NAME', $default_values['MAIL_FROM_NAME'], ['class' => 'form-control','placeholder' => __('superadmin::lang.mail_from_name')]); !!}