- {{ Form::label('qr_text', trans('admin/settings/general.qr_text'), ['class'=>'control-label']) }}
+ @if($setting->label2_enable == 0)
+
+
+
+ {{ Form::label('qr_text', trans('admin/settings/general.qr_text'), ['class'=>'control-label']) }}
+
+
+ @if ($setting->qr_code == 1)
+ {{ Form::text('qr_text', old('qr_text', $setting->qr_text), array(
+ 'class' => 'form-control',
+ 'placeholder' => 'Property of Your Company',
+ 'rel' => 'txtTooltip',
+ 'title' =>'Extra text that you would like to display on your labels.',
+ 'data-toggle' =>'tooltip',
+ 'data-placement'=>'top'
+ )) }}
+ @else
+ {{ Form::text('qr_text', old('qr_text', $setting->qr_text), array(
+ 'class' => 'form-control',
+ 'disabled' => 'disabled',
+ 'placeholder' => 'Property of Your Company'
+ )) }}
+
{{ trans('admin/settings/general.qr_help') }}
+ @endif
+ {!! $errors->first('qr_text', '
:message') !!}
+
-
- @if ($setting->qr_code == 1)
- {{ Form::text('qr_text', old('qr_text', $setting->qr_text), array(
- 'class' => 'form-control',
- 'placeholder' => 'Property of Your Company',
- 'rel' => 'txtTooltip',
- 'title' =>'Extra text that you would like to display on your labels.',
- 'data-toggle' =>'tooltip',
- 'data-placement'=>'top'
- )) }}
- @else
- {{ Form::text('qr_text', old('qr_text', $setting->qr_text), array(
- 'class' => 'form-control',
- 'disabled' => 'disabled',
- 'placeholder' => 'Property of Your Company'
- )) }}
-
{{ trans('admin/settings/general.qr_help') }}
- @endif
- {!! $errors->first('qr_text', '
:message') !!}
-
-