2017-07-07 23:44:48 -07:00
@ extends ( 'layouts/default' )
{{ -- Page title -- }}
@ section ( 'title' )
Update General Settings
@ parent
@ stop
@ section ( 'header_right' )
< a href = " { { route('settings.index') }} " class = " btn btn-default " > {{ trans ( 'general.back' ) }} </ a >
@ stop
{{ -- Page content -- }}
@ section ( 'content' )
< style >
. checkbox label {
padding - right : 40 px ;
}
</ style >
2017-10-17 17:18:17 -07:00
{{ Form :: open ([ 'method' => 'POST' , 'files' => false , 'autocomplete' => 'off' , 'class' => 'form-horizontal' , 'role' => 'form' ]) }}
2017-07-07 23:44:48 -07:00
<!-- CSRF Token -->
{{ csrf_field ()}}
< div class = " row " >
< div class = " col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 " >
< div class = " panel box box-default " >
< div class = " box-header with-border " >
< h4 class = " box-title " >
< i class = " fa fa-wrench " ></ i > {{ trans ( 'admin/settings/general.general_settings' ) }}
</ h4 >
</ div >
2018-03-03 17:07:28 -08:00
< div class = " box-body " >
2017-07-07 23:44:48 -07:00
< div class = " col-md-12 " >
<!-- Full Multiple Companies Support -->
< div class = " form-group { { $errors->has ('full_multiple_companies_support') ? 'error' : '' }} " >
< div class = " col-md-3 " >
2018-03-03 17:07:28 -08:00
{{ Form :: label ( 'full_multiple_companies_support' , trans ( 'admin/settings/general.full_multiple_companies_support_text' )) }}
2017-07-07 23:44:48 -07:00
</ div >
< div class = " col-md-9 " >
{{ Form :: checkbox ( 'full_multiple_companies_support' , '1' , Input :: old ( 'full_multiple_companies_support' , $setting -> full_multiple_companies_support ), array ( 'class' => 'minimal' )) }}
{{ trans ( 'admin/settings/general.full_multiple_companies_support_text' ) }}
{ !! $errors -> first ( 'full_multiple_companies_support' , '<span class="alert-msg">:message</span>' ) !! }
< p class = " help-block " >
{{ trans ( 'admin/settings/general.full_multiple_companies_support_help_text' ) }}
</ p >
</ div >
</ div >
2018-03-03 17:07:28 -08:00
2017-07-07 23:44:48 -07:00
<!-- /. form - group -->
<!-- Require signature for acceptance -->
< div class = " form-group { { $errors->has ('require_accept_signature') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'full_multiple_companies_support' ,
trans ( 'admin/settings/general.require_accept_signature' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: checkbox ( 'require_accept_signature' , '1' , Input :: old ( 'require_accept_signature' , $setting -> require_accept_signature ), array ( 'class' => 'minimal' )) }}
{{ trans ( 'general.yes' ) }}
{ !! $errors -> first ( 'require_accept_signature' , '<span class="alert-msg">:message</span>' ) !! }
< p class = " help-block " > {{ trans ( 'admin/settings/general.require_accept_signature_help_text' ) }} </ p >
</ div >
</ div >
<!-- /. form - group -->
<!-- Email domain -->
< div class = " form-group { { $errors->has ('email_domain') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'email_domain' , trans ( 'general.email_domain' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: text ( 'email_domain' , Input :: old ( 'email_domain' , $setting -> email_domain ), array ( 'class' => 'form-control' , 'placeholder' => 'example.com' )) }}
< span class = " help-block " > {{ trans ( 'general.email_domain_help' ) }} </ span >
{ !! $errors -> first ( 'email_domain' , '<span class="alert-msg">:message</span>' ) !! }
</ div >
</ div >
<!-- Email format -->
< div class = " form-group { { $errors->has ('email_format') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'email_format' , trans ( 'general.email_format' )) }}
</ div >
< div class = " col-md-9 " >
{ !! Form :: username_format ( 'email_format' , Input :: old ( 'email_format' , $setting -> email_format ), 'select2' ) !! }
{ !! $errors -> first ( 'email_format' , '<span class="alert-msg">:message</span>' ) !! }
</ div >
</ div >
<!-- Username format -->
< div class = " form-group { { $errors->has ('username_format') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'username_format' , trans ( 'general.username_format' )) }}
</ div >
< div class = " col-md-9 " >
{ !! Form :: username_format ( 'username_format' , Input :: old ( 'username_format' , $setting -> username_format ), 'select2' ) !! }
{ !! $errors -> first ( 'username_format' , '<span class="alert-msg">:message</span>' ) !! }
</ div >
</ div >
<!-- remote load -->
< div class = " form-group " >
< div class = " col-md-3 " >
{{ Form :: label ( 'load_remote' , trans ( 'admin/settings/general.load_remote_text' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: checkbox ( 'load_remote' , '1' , Input :: old ( 'load_remote' , $setting -> load_remote ), array ( 'class' => 'minimal' )) }}
{{ trans ( 'admin/settings/general.load_remote_help_text' ) }}
</ div >
</ div >
2018-03-25 13:46:57 -07:00
<!-- Load images in emails -->
< div class = " form-group { { $errors->has ('show_images_in_email') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'show_images_in_email' , trans ( 'admin/settings/general.show_images_in_email' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: checkbox ( 'show_images_in_email' , '1' , Input :: old ( 'show_images_in_email' , $setting -> show_images_in_email ), array ( 'class' => 'minimal' )) }}
{{ trans ( 'general.yes' ) }}
{ !! $errors -> first ( 'show_images_in_email' , '<span class="alert-msg">:message</span>' ) !! }
< p class = " help-block " >
{{ trans ( 'admin/settings/general.show_images_in_email_help' ) }}
</ p >
</ div >
</ div >
2017-07-07 23:44:48 -07:00
<!-- Per Page -->
< div class = " form-group { { $errors->has ('per_page') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'per_page' , trans ( 'admin/settings/general.per_page' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: text ( 'per_page' , Input :: old ( 'per_page' , $setting -> per_page ), array ( 'class' => 'form-control' , 'placeholder' => '5' , 'maxlength' => '3' , 'style' => 'width: 60px;' )) }}
{ !! $errors -> first ( 'per_page' , '<span class="alert-msg">:message</span>' ) !! }
</ div >
</ div >
2017-07-25 19:36:38 -07:00
<!-- Thumb Size -->
< div class = " form-group { { $errors->has ('thumbnail_max_h') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'thumbnail_max_h' , trans ( 'admin/settings/general.thumbnail_max_h' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: text ( 'thumbnail_max_h' , Input :: old ( 'thumbnail_max_h' , $setting -> thumbnail_max_h ), array ( 'class' => 'form-control' , 'placeholder' => '50' , 'maxlength' => '3' , 'style' => 'width: 60px;' )) }}
< p class = " help-block " > {{ trans ( 'admin/settings/general.thumbnail_max_h_help' ) }} </ p >
{ !! $errors -> first ( 'thumbnail_max_h' , '<span class="alert-msg">:message</span>' ) !! }
</ div >
</ div >
2017-07-07 23:44:48 -07:00
<!-- Default EULA -->
< div class = " form-group { { $errors->has ('default_eula_text') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'per_page' , trans ( 'admin/settings/general.default_eula_text' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: textarea ( 'default_eula_text' , Input :: old ( 'default_eula_text' , $setting -> default_eula_text ), array ( 'class' => 'form-control' , 'placeholder' => 'Add your default EULA text' )) }}
{ !! $errors -> first ( 'default_eula_text' , '<span class="alert-msg">:message</span>' ) !! }
< p class = " help-block " > {{ trans ( 'admin/settings/general.default_eula_help_text' ) }} </ p >
< p class = " help-block " > { !! trans ( 'admin/settings/general.eula_markdown' ) !! } </ p >
</ div >
</ div >
<!-- login text -->
2018-01-19 20:43:55 -08:00
< div class = " form-group { { $errors->has ('login_note') ? 'error' : '' }} " >
2017-07-07 23:44:48 -07:00
< div class = " col-md-3 " >
{{ Form :: label ( 'login_note' , trans ( 'admin/settings/general.login_note' )) }}
</ div >
< div class = " col-md-9 " >
2017-09-22 17:23:22 -07:00
@ if ( config ( 'app.lock_passwords' ))
2017-07-07 23:44:48 -07:00
2017-09-22 17:23:22 -07:00
< textarea class = " form-control disabled " name = " login_note " placeholder = " If you do not have a login or have found a device belonging to this company, please call technical support at 888-555-1212. Thank you. " rows = " 2 " readonly > {{ Input :: old ( 'login_note' , $setting -> login_note ) }} </ textarea >
2017-07-07 23:44:48 -07:00
{ !! $errors -> first ( 'login_note' , '<span class="alert-msg">:message</span>' ) !! }
< p class = " help-block " > {{ trans ( 'general.lock_passwords' ) }} </ p >
@ else
< textarea class = " form-control " name = " login_note " placeholder = " If you do not have a login or have found a device belonging to this company, please call technical support at 888-555-1212. Thank you. " rows = " 2 " > {{ Input :: old ( 'login_note' , $setting -> login_note ) }} </ textarea >
{ !! $errors -> first ( 'login_note' , '<span class="alert-msg">:message</span>' ) !! }
@ endif
< p class = " help-block " > { !! trans ( 'admin/settings/general.login_note_help' ) !! } </ p >
</ div >
</ div >
2017-10-19 06:16:03 -07:00
<!-- Mail test -->
< div class = " form-group " >
< div class = " col-md-3 " >
{{ Form :: label ( 'login_note' , 'Test Mail' ) }}
</ div >
< div class = " col-md-9 " id = " mailtestrow " >
< a class = " btn btn-default btn-sm pull-left " id = " mailtest " style = " margin-right: 10px; " >
Send Test </ a >
< span id = " mailtesticon " ></ span >
< span id = " mailtestresult " ></ span >
< span id = " mailteststatus " ></ span >
</ div >
< div class = " col-md-9 col-md-offset-3 " >
< div id = " mailteststatus-error " class = " text-danger " ></ div >
</ div >
< div class = " col-md-9 col-md-offset-3 " >
2017-11-03 14:58:49 -07:00
< p class = " help-block " > This will attempt to send a test mail to {{ config ( 'mail.reply_to.address' ) }} .</ p >
2017-10-19 06:16:03 -07:00
</ div >
</ div >
2018-01-19 20:43:55 -08:00
<!-- dashboard text -->
< div class = " form-group { { $errors->has ('dashboard_message') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'dashboard_message' , trans ( 'admin/settings/general.dashboard_message' )) }}
</ div >
< div class = " col-md-9 " >
@ if ( config ( 'app.lock_passwords' ))
< textarea class = " form-control disabled " name = " login_note " placeholder = " If you do not have a login or have found a device belonging to this company, please call technical support at 888-555-1212. Thank you. " rows = " 2 " readonly > {{ Input :: old ( 'dashboard_message' , $setting -> login_note ) }} </ textarea >
{ !! $errors -> first ( 'dashboard_message' , '<span class="alert-msg">:message</span>' ) !! }
< p class = " help-block " > {{ trans ( 'general.lock_passwords' ) }} </ p >
@ else
< textarea class = " form-control " name = " dashboard_message " rows = " 2 " > {{ Input :: old ( 'login_note' , $setting -> dashboard_message ) }} </ textarea >
{ !! $errors -> first ( 'dashboard_message' , '<span class="alert-msg">:message</span>' ) !! }
@ endif
< p class = " help-block " >
{{ trans ( 'admin/settings/general.dashboard_message_help' ) }}
{ !! trans ( 'general.github_markdown' ) !! } </ p >
</ div >
</ div >
2018-01-17 19:18:48 -08:00
<!-- Archived in List -->
< div class = " form-group { { $errors->has ('show_archived_in_list') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'show_archived_in_list' ,
trans ( 'admin/settings/general.show_archived_in_list' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: checkbox ( 'show_archived_in_list' , '1' , Input :: old ( 'show_archived_in_list' , $setting -> show_archived_in_list ), array ( 'class' => 'minimal' )) }}
{{ trans ( 'admin/settings/general.show_archived_in_list_text' ) }}
{ !! $errors -> first ( 'show_archived_in_list' , '<span class="alert-msg">:message</span>' ) !! }
</ div >
</ div >
2018-01-24 10:43:46 -08:00
<!-- Model List prefs -->
< div class = " form-group { { $errors->has ('show_in_model_list') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'show_in_model_list' ,
trans ( 'admin/settings/general.show_in_model_list' )) }}
</ div >
< div class = " col-md-9 " >
{{ Form :: checkbox ( 'show_in_model_list[]' , 'image' , Input :: old ( 'show_in_model_list' , $snipeSettings -> modellistCheckedValue ( 'image' )), array ( 'class' => 'minimal' )) }} {{ trans ( 'general.image' ) }} < br >
{{ Form :: checkbox ( 'show_in_model_list[]' , 'category' , Input :: old ( 'show_in_model_list' , $snipeSettings -> modellistCheckedValue ( 'category' )), array ( 'class' => 'minimal' )) }} {{ trans ( 'general.category' ) }} < br >
{{ Form :: checkbox ( 'show_in_model_list[]' , 'manufacturer' , Input :: old ( 'show_in_model_list' , $snipeSettings -> modellistCheckedValue ( 'manufacturer' )), array ( 'class' => 'minimal' )) }} {{ trans ( 'general.manufacturer' ) }} < br >
{{ Form :: checkbox ( 'show_in_model_list[]' , 'model_number' , Input :: old ( 'show_in_model_list' , $snipeSettings -> modellistCheckedValue ( 'model_number' )), array ( 'class' => 'minimal' )) }} {{ trans ( 'general.model_no' ) }} < br >
</ div >
</ div >
<!-- /. form - group -->
2018-05-08 00:50:13 -07:00
2018-05-08 03:14:25 -07:00
<!-- Privacy Policy Footer -->
2018-05-08 00:50:13 -07:00
< div class = " form-group { { $errors->has ('privacy_policy_link') ? 'error' : '' }} " >
< div class = " col-md-3 " >
{{ Form :: label ( 'privacy_policy_link' , trans ( 'admin/settings/general.privacy_policy_link' )) }}
</ div >
< div class = " col-md-9 " >
2018-05-08 01:07:15 -07:00
@ if ( config ( 'app.lock_passwords' ))
{{ Form :: text ( 'privacy_policy_link' , Input :: old ( 'privacy_policy_link' , $setting -> privacy_policy_link ), array ( 'class' => 'form-control disabled' , 'disabled' => 'disabled' )) }}
@ else
{{ Form :: text ( 'privacy_policy_link' , Input :: old ( 'privacy_policy_link' , $setting -> privacy_policy_link ), array ( 'class' => 'form-control' )) }}
@ endif
2018-05-08 00:50:13 -07:00
< span class = " help-block " > {{ trans ( 'admin/settings/general.privacy_policy_link_help' ) }} </ span >
{ !! $errors -> first ( 'privacy_policy_link' , '<span class="alert-msg">:message</span>' ) !! }
</ div >
</ div >
2018-03-03 17:07:28 -08:00
</ div >
2018-01-24 10:43:46 -08:00
2017-07-07 23:44:48 -07:00
</ div > <!--/. box - body -->
< div class = " box-footer " >
< div class = " text-left col-md-6 " >
< a class = " btn btn-link text-left " href = " { { route('settings.index') }} " > {{ trans ( 'button.cancel' ) }} </ a >
</ div >
< div class = " text-right col-md-6 " >
< button type = " submit " class = " btn btn-success " >< i class = " fa fa-check icon-white " ></ i > {{ trans ( 'general.save' ) }} </ button >
</ div >
</ div >
</ div >
2018-03-03 17:07:28 -08:00
2017-07-07 23:44:48 -07:00
</ div > <!-- / box -->
</ div > <!-- /. col - md - 8 -->
</ div > <!-- /. row -->
2017-10-19 06:16:03 -07:00
{{ Form :: close () }}
2017-07-07 23:44:48 -07:00
@ stop
@ section ( 'moar_scripts' )
<!-- bootstrap color picker -->
2017-09-28 19:45:15 -07:00
< script nonce = " { { csrf_token() }} " >
2017-07-07 23:44:48 -07:00
//color picker with addon
$ ( " .header-color " ) . colorpicker ();
// toggle the disabled state of asset id prefix
$ ( '#auto_increment_assets' ) . on ( 'ifChecked' , function (){
$ ( '#auto_increment_prefix' ) . prop ( 'disabled' , false ) . focus ();
}) . on ( 'ifUnchecked' , function (){
$ ( '#auto_increment_prefix' ) . prop ( 'disabled' , true );
});
2017-10-19 06:16:03 -07:00
// Test Mail
$ ( " #mailtest " ) . click ( function (){
$ ( " #mailtestrow " ) . removeClass ( 'text-success' );
$ ( " #mailtestrow " ) . removeClass ( 'text-danger' );
2017-10-19 08:18:56 -07:00
$ ( " #mailtesticon " ) . html ( '' );
2017-10-19 06:16:03 -07:00
$ ( " #mailteststatus " ) . html ( '' );
2017-10-19 08:18:56 -07:00
$ ( '#mailteststatus-error' ) . html ( '' );
2017-10-19 06:16:03 -07:00
$ ( " #mailtesticon " ) . html ( '<i class="fa fa-spinner spin"></i> Sending Test Email...' );
$ . ajax ({
2017-10-19 08:18:56 -07:00
url : '{{ route(' api . settings . mailtest ') }}' ,
2017-10-19 06:16:03 -07:00
type : 'POST' ,
headers : {
" X-Requested-With " : 'XMLHttpRequest' ,
" X-CSRF-TOKEN " : $ ( 'meta[name="csrf-token"]' ) . attr ( 'content' )
},
data : {},
dataType : 'json' ,
success : function ( data ) {
2017-10-19 08:33:46 -07:00
console . dir ( data );
2017-10-19 06:16:03 -07:00
$ ( " #mailtesticon " ) . html ( '' );
$ ( " #mailteststatus " ) . html ( '' );
$ ( '#mailteststatus-error' ) . html ( '' );
$ ( " #mailteststatus " ) . removeClass ( 'text-danger' );
$ ( " #mailteststatus " ) . addClass ( 'text-success' );
2017-10-19 08:33:46 -07:00
if ( data . message ) {
$ ( " #mailteststatus " ) . html ( '<i class="fa fa-check text-success"></i> ' + data . message );
} else {
$ ( " #mailteststatus " ) . html ( '<i class="fa fa-check text-success"></i> Mail sent!' );
}
2017-10-19 06:16:03 -07:00
},
error : function ( data ) {
$ ( " #mailtesticon " ) . html ( '' );
$ ( " #mailteststatus " ) . html ( '' );
$ ( '#mailteststatus-error' ) . html ( '' );
$ ( " #mailteststatus " ) . removeClass ( 'text-success' );
$ ( " #mailteststatus " ) . addClass ( 'text-danger' );
$ ( " #mailtesticon " ) . html ( '<i class="fa fa-exclamation-triangle text-danger"></i>' );
$ ( '#mailteststatus' ) . html ( 'Mail could not be sent.' );
2017-10-19 08:18:56 -07:00
if ( data . responseJSON ) {
$ ( '#mailteststatus-error' ) . html ( 'Error: ' + data . responseJSON . messages );
} else {
console . dir ( data );
}
2017-10-19 06:16:03 -07:00
}
});
});
2017-07-07 23:44:48 -07:00
</ script >
@ stop