@extends('backend.index') @section('content')
Configure General Script Settings, displaying of news and comments, and security system of the script
@csrf
{!! makeDropDown($languages, "save_con[locale]", config('settings.locale') ) !!}
{!! makeDropDown(trans('currency'), "save_con[currency]", config('settings.currency') ) !!}
{!! makeDropDown($skins, "save_con[skin]", config('settings.skin') ) !!}
{!! makeDropDown(array("0" => "Standard method", "1" => "Advanced method"), "save_con[extra_login]", config('settings.extra_login') ) !!}
{!! makeDropDown(array("0" => "None", "1" => "Medium Level", "2" => "High Level"), "save_con[extra_login]", config('settings.log_hash') ) !!}
{!! makeDropDown($storage, "save_con[storage_audio_location]", config('settings.storage_audio_location', 'public') ) !!}
{!! makeDropDown($storage, "save_con[storage_artwork_location]", config('settings.storage_artwork_location', 'public') ) !!}
{!! makeDropDown(array("0" => "Disabled", "1" => "Full page number", "2" => "Older and Newer"), "save_con[post_navigation]", config('settings.post_navigation') ) !!}
{!! makeDropDown(array("0" => "Descending", "1" => "Ascending"), "save_con[post_sort_order]", config('settings.post_sort_order') ) !!}
{!! makeDropDown(array("0" => "By publication date", "1" => "By views", "2" => "Alphabetical", "3" => "By number of comments"), "save_con[post_sort_order]", config('settings.post_sort_order') ) !!}
{!! makeDropDown(array("0" => "By The Bigger Side", "1" => "By Height", "2" => "By Width"), "save_con[extra_login]", config('settings.log_hash') ) !!}
{!! makeDropDown(array("0" => "Upper left corner", "1" => "Upper right corner", "2" => "Lower left corner", "3" => "Lower right corner"), "save_con[image_watermark_seite]", config('settings.image_watermark_seite', 3) ) !!}
{!! makeDropDown(array("0" => "By the bigger side", "1" => "By Width", "2" => "By height"), "save_con[image_t_seite]", config('settings.image_t_seite', 0) ) !!}
Small

Medium

Large
These following features require a working FFMpeg install. You will need both FFMpeg and FFProbe binaries to use it. Be sure that these binaries can be located with system PATH to get the benefit of the binary detection, otherwise you should have to explicitly give the binaries path on load.
Small

Medium

Large
These following features require a working FFMpeg install. You will need both FFMpeg and FFProbe binaries to use it. Be sure that these binaries can be located with system PATH to get the benefit of the binary detection, otherwise you should have to explicitly give the binaries path on load.
{!! makeDropDown( array("sendmail" => "PHP Mail()", "smtp" => "SMTP"), "mail_driver", env('MAIL_DRIVER', 'smtp') ) !!}
{!! makeDropDown( array("ssl" => "SSL", "tls" => "TLS"), "mail_encryption", env('MAIL_ENCRYPTION') ) !!}
{!! makeDropDown(array("0" => "Ascending", "1" => "Descending"), "save_con[comment_order]", config('settings.comment_order')) !!}
{!! makeDropDown(array("0" => "Use Username", "1" => "Use Email address"), "save_con[authorization_method]", config('settings.authorization_method')) !!}
{!! makeRolesDropDown("save_con[default_usergroup]", config('settings.default_usergroup', 5)) !!}
{!! makeDropDown(array("0" => "Simplified", "1" => "Advanced"), "save_con[registration_method]", config('settings.registration_method')) !!}
@endsection