diff --git a/resources/views/settings/asset_tags.blade.php b/resources/views/settings/asset_tags.blade.php index 020d97a756..e9a33fa21a 100644 --- a/resources/views/settings/asset_tags.blade.php +++ b/resources/views/settings/asset_tags.blade.php @@ -55,7 +55,7 @@
- {{ Form::label('next_auto_tag_base', trans('admin/settings/general.next_auto_tag_base')) }} +
{{ Form::text('next_auto_tag_base', old('next_auto_tag_base', $setting->next_auto_tag_base), array('class' => 'form-control', 'style'=>'width: 150px;', 'aria-label'=>'next_auto_tag_base')) }} @@ -67,7 +67,7 @@
- {{ Form::label('auto_increment_prefix', trans('admin/settings/general.auto_increment_prefix')) }} +
@if ($setting->auto_increment_assets == 1) @@ -82,7 +82,7 @@
- {{ Form::label('zerofill_count', trans('admin/settings/general.zerofill_count')) }} +
{{ Form::text('zerofill_count', old('zerofill_count', $setting->zerofill_count), array('class' => 'form-control', 'style'=>'width: 150px;', 'aria-label'=>'zerofill_count')) }} diff --git a/resources/views/settings/branding.blade.php b/resources/views/settings/branding.blade.php index c586917ef5..ee31677bc0 100644 --- a/resources/views/settings/branding.blade.php +++ b/resources/views/settings/branding.blade.php @@ -45,7 +45,7 @@
- {{ Form::label('site_name', trans('admin/settings/general.site_name')) }} +
@if (config('app.lock_passwords')===true) @@ -64,7 +64,7 @@
- {{ Form::label('brand', trans('admin/settings/general.web_brand')) }} +
{!! Form::select('brand', array('1'=>'Text','2'=>'Logo','3'=>'Logo + Text'), old('brand', $setting->brand), array('class' => 'form-control select2', 'style'=>'width: 150px ;')) !!} @@ -188,7 +188,7 @@
- {{ Form::label('header_color', trans('admin/settings/general.header_color')) }} +
@@ -204,7 +204,7 @@
- {{ Form::label('skin', trans('general.skin')) }} +
{!! Form::skin('skin', old('skin', $setting->skin), 'select2') !!} @@ -229,7 +229,7 @@
- {{ Form::label('custom_css', trans('admin/settings/general.custom_css')) }} +
@if (config('app.lock_passwords')===true) @@ -248,7 +248,7 @@
- {{ Form::label('support_footer', trans('admin/settings/general.support_footer')) }} +
@if (config('app.lock_passwords')===true) @@ -267,7 +267,7 @@
- {{ Form::label('version_footer', trans('admin/settings/general.version_footer')) }} +
@if (config('app.lock_passwords')===true) @@ -285,7 +285,7 @@
- {{ Form::label('footer_text', trans('admin/settings/general.footer_text')) }} +
@if (config('app.lock_passwords')===true) diff --git a/resources/views/settings/general.blade.php b/resources/views/settings/general.blade.php index 1de5d4035d..be19a9ee30 100644 --- a/resources/views/settings/general.blade.php +++ b/resources/views/settings/general.blade.php @@ -77,7 +77,7 @@
- {{ Form::label('email_domain', trans('general.email_domain')) }} +
{{ Form::text('email_domain', old('email_domain', $setting->email_domain), array('class' => 'form-control','placeholder' => 'example.com')) }} @@ -90,7 +90,7 @@
- {{ Form::label('email_format', trans('general.email_format')) }} +
{!! Form::username_format('email_format', old('email_format', $setting->email_format), 'select2') !!} @@ -101,7 +101,7 @@
- {{ Form::label('username_format', trans('general.username_format')) }} +
{!! Form::username_format('username_format', old('username_format', $setting->username_format), 'select2') !!} @@ -182,7 +182,7 @@
- {{ Form::label('per_page', trans('admin/settings/general.per_page')) }} +
{{ Form::text('per_page', old('per_page', $setting->per_page), array('class' => 'form-control','placeholder' => '5', 'maxlength'=>'3', 'style'=>'width: 60px;')) }} @@ -193,7 +193,7 @@
- {{ Form::label('thumbnail_max_h', trans('admin/settings/general.thumbnail_max_h')) }} +
{{ Form::text('thumbnail_max_h', old('thumbnail_max_h', $setting->thumbnail_max_h), array('class' => 'form-control','placeholder' => '50', 'maxlength'=>'3', 'style'=>'width: 60px;')) }} @@ -205,7 +205,7 @@
- {{ Form::label('default_eula_text', trans('admin/settings/general.default_eula_text')) }} +
{{ Form::textarea('default_eula_text', old('default_eula_text', $setting->default_eula_text), array('class' => 'form-control','placeholder' => 'Add your default EULA text')) }} @@ -236,7 +236,7 @@