@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/settings/general.labels_title') }} @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content') {{ Form::open(['id' => 'settingsForm', 'method' => 'POST', 'files' => false, 'autocomplete' => 'off', 'class' => 'form-horizontal', 'role' => 'form' ]) }} {{csrf_field()}}

{{ trans('admin/settings/general.labels') }}

has('label2_enable') ? 'error' : '' }}">
{!! $errors->first('label2_enable', '') !!}

{!! trans('admin/settings/general.label2_enable_help') !!}

@if ($setting->label2_enable)
@include('partials.label2-preview')
{{ Form::label('label2_title', trans('admin/settings/general.label2_title'), ['class'=>'control-label']) }}
{{ Form::text('label2_title', old('label2_title', $setting->label2_title), [ 'class'=>'form-control', 'placeholder'=>$setting->qr_text, 'aria-label'=>'label2_title' ]) }} {!! $errors->first('label2_title', '') !!}

{!! trans('admin/settings/general.label2_title_help') !!}

{!! trans('admin/settings/general.label2_title_help_phold') !!}.
{!! trans('admin/settings/general.help_asterisk_bold') !!}.
{!! trans('admin/settings/general.help_blank_to_use', [ 'setting_name' => trans('admin/settings/general.barcodes').' > '.trans('admin/settings/general.qr_text') ]) !!}

has('label2_asset_logo') ? 'error' : '' }}">

{!! trans('admin/settings/general.label2_asset_logo_help', ['setting_name' => trans('admin/settings/general.brand').' > '.trans('admin/settings/general.label_logo')]) !!}

{{ Form::label('label2_1d_type', trans('admin/settings/general.label2_1d_type'), ['class'=>'control-label']) }}
@php $select1DValues = [ 'default' => trans('admin/settings/general.default').' [ '.$setting->alt_barcode.' ]', 'none' => trans('admin/settings/general.none'), 'C128' => 'C128', 'C39' => 'C39', 'EAN5' => 'EAN5', 'EAN13' => 'EAN13', 'UPCA' => 'UPCA', 'UPCE' => 'UPCE' ]; @endphp {{ Form::select('label2_1d_type', $select1DValues, old('label2_1d_type', $setting->label2_1d_type), [ 'class'=>'select2 col-md-4', 'aria-label'=>'label2_1d_type' ]) }} {!! $errors->first('label2_1d_type', '') !!}

{{ trans('admin/settings/general.label2_1d_type_help') }}. {!! trans('admin/settings/general.help_default_will_use', [ 'default' => trans('admin/settings/general.default'), 'setting_name' => trans('admin/settings/general.barcodes').' > '.trans('admin/settings/general.alt_barcode_type'), ]) !!}

{{ Form::label('label2_2d_type', trans('admin/settings/general.label2_2d_type'), ['class'=>'control-label']) }}
@php $select2DValues = [ 'default' => trans('admin/settings/general.default').' [ '.$setting->barcode_type.' ]', 'none' => trans('admin/settings/general.none'), 'QRCODE' => 'QRCODE', 'DATAMATRIX' => 'DATAMATRIX', 'PDF417' => 'PDF417', ]; @endphp {{ Form::select('label2_2d_type', $select2DValues, old('label2_2d_type', $setting->label2_2d_type), [ 'class'=>'select2 col-md-4', 'aria-label'=>'label2_2d_type' ]) }} {!! $errors->first('label2_2d_type', '') !!}

{{ trans('admin/settings/general.label2_2d_type_help', ['current' => $setting->barcode_type]) }}. {!! trans('admin/settings/general.help_default_will_use', [ 'default' => trans('admin/settings/general.default'), 'setting_name' => trans('admin/settings/general.barcodes').' > '.trans('admin/settings/general.barcode_type'), ]) !!}

{{ Form::label('label2_2d_target', trans('admin/settings/general.label2_2d_target'), ['class'=>'control-label']) }}
{{ Form::select('label2_2d_target', ['hardware_id'=>'/hardware/{id} ('.trans('admin/settings/general.default').')', 'ht_tag'=>'/ht/{asset_tag}'], old('label2_2d_target', $setting->label2_2d_target), [ 'class'=>'select2 col-md-4', 'aria-label'=>'label2_2d_target' ]) }} {!! $errors->first('label2_2d_target', '') !!}

{{ trans('admin/settings/general.label2_2d_target_help') }}

{{ Form::label('label2_fields', trans('admin/settings/general.label2_fields')) }}
@include('partials.label2-field-definitions', [ 'name' => 'label2_fields', 'value' => old('label2_fields', $setting->label2_fields), 'customFields' => $customFields ]) {!! $errors->first('label2_fields', '') !!}

{{ trans('admin/settings/general.label2_fields_help') }}

@include('partials.bootstrap-table') @else {{ Form::hidden('label2_template', old('label2_template', $setting->label2_template)) }} {{ Form::hidden('label2_title', old('label2_title', $setting->label2_title)) }} {{ Form::hidden('label2_asset_logo', old('label2_asset_logo', $setting->label2_asset_logo)) }} {{ Form::hidden('label2_1d_type', old('label2_1d_type', $setting->label2_1d_type)) }} {{ Form::hidden('label2_2d_type', old('label2_2d_type', $setting->label2_2d_type)) }} {{ Form::hidden('label2_2d_target', old('label2_2d_target', $setting->label2_2d_target)) }} {{ Form::hidden('label2_fields', old('label2_fields', $setting->label2_fields)) }} @endif @if ($setting->label2_enable && ($setting->label2_template != 'DefaultLabel')) {{ Form::hidden('labels_per_page', old('labels_per_page', $setting->labels_per_page)) }} {{ Form::hidden('labels_fontsize', old('labels_fontsize', $setting->labels_fontsize)) }} {{ Form::hidden('labels_width', old('labels_width', $setting->labels_width)) }} {{ Form::hidden('labels_height', old('labels_height', $setting->labels_height)) }} {{ Form::hidden('labels_display_sgutter', old('labels_display_sgutter', $setting->labels_display_sgutter)) }} {{ Form::hidden('labels_display_bgutter', old('labels_display_bgutter', $setting->labels_display_bgutter)) }} {{ Form::hidden('labels_pmargin_top', old('labels_pmargin_top', $setting->labels_pmargin_top)) }} {{ Form::hidden('labels_pmargin_bottom', old('labels_pmargin_bottom', $setting->labels_pmargin_bottom)) }} {{ Form::hidden('labels_pmargin_left', old('labels_pmargin_left', $setting->labels_pmargin_left)) }} {{ Form::hidden('labels_pmargin_right', old('labels_pmargin_right', $setting->labels_pmargin_right)) }} {{ Form::hidden('labels_pagewidth', old('labels_pagewidth', $setting->labels_pagewidth)) }} {{ Form::hidden('labels_pageheight', old('labels_pageheight', $setting->labels_pageheight)) }} {{ Form::hidden('labels_display_name', old('labels_display_name', $setting->labels_display_name)) }} {{ Form::hidden('labels_display_serial', old('labels_display_serial', $setting->labels_display_serial)) }} {{ Form::hidden('labels_display_tag', old('labels_display_tag', $setting->labels_display_tag)) }} {{ Form::hidden('labels_display_model', old('labels_display_model', $setting->labels_display_model)) }} {{ Form::hidden('labels_display_company_name', old('labels_display_company_name', $setting->labels_display_company_name)) }} @else
{{ Form::label('labels_per_page', trans('admin/settings/general.labels_per_page'), ['class'=>'control-label']) }}
{{ Form::text('labels_per_page', old('labels_per_page', $setting->labels_per_page), ['class' => 'form-control','style' => 'width: 100px;', 'aria-label'=>'labels_per_page']) }} {!! $errors->first('labels_per_page', '') !!}
{{ Form::label('labels_fontsize', trans('admin/settings/general.labels_fontsize'), ['class'=>'control-label']) }}
{{ Form::text('labels_fontsize', old('labels_fontsize', $setting->labels_fontsize), ['class' => 'form-control', 'aria-label'=>'labels_fontsize']) }}
{{ trans('admin/settings/general.text_pt') }}
{!! $errors->first('labels_fontsize', '') !!}
{{ Form::label('labels_width', trans('admin/settings/general.label_dimensions'), ['class'=>'control-label']) }}
{{ Form::text('labels_width', old('labels_width', $setting->labels_width), ['class' => 'form-control', 'aria-label'=>'labels_width']) }}
{{ trans('admin/settings/general.width_w') }}
{{ Form::text('labels_height', old('labels_height', $setting->labels_height), ['class' => 'form-control', 'aria-label'=>'labels_height']) }}
{{ trans('admin/settings/general.height_h') }}
{!! $errors->first('labels_width', '') !!} {!! $errors->first('labels_height', '') !!}
{{ Form::label('labels_display_sgutter', trans('admin/settings/general.label_gutters')) }}
{{ Form::text('labels_display_sgutter', old('labels_display_sgutter', $setting->labels_display_sgutter), ['class' => 'form-control', 'aria-label'=>'labels_display_sgutter']) }}
{{ trans('admin/settings/general.horizontal') }}
{{ Form::text('labels_display_bgutter', old('labels_display_bgutter', $setting->labels_display_bgutter), ['class' => 'form-control', 'aria-label'=>'labels_display_bgutter']) }}
{{ trans('admin/settings/general.vertical') }}
{!! $errors->first('labels_display_sgutter', '') !!} {!! $errors->first('labels_display_bgutter', '') !!}
{{ Form::label('labels_pmargin_top', trans('admin/settings/general.page_padding')) }}
{{ Form::text('labels_pmargin_top', old('labels_pmargin_top', $setting->labels_pmargin_top), ['class' => 'form-control', 'aria-label'=>'labels_pmargin_top']) }}
{{ trans('admin/settings/general.top') }}
{{ Form::text('labels_pmargin_right', old('labels_pmargin_right', $setting->labels_pmargin_right), ['class' => 'form-control', 'aria-label'=>'labels_pmargin_right']) }}
{{ trans('admin/settings/general.right') }}
{{ Form::text('labels_pmargin_bottom', old('labels_pmargin_bottom', $setting->labels_pmargin_bottom), ['class' => 'form-control', 'aria-label'=>'labels_pmargin_bottom']) }}
{{ trans('admin/settings/general.bottom') }}
{{ Form::text('labels_pmargin_left', old('labels_pmargin_left', $setting->labels_pmargin_left), ['class' => 'form-control', 'aria-label'=>'labels_pmargin_left']) }}
{{ trans('admin/settings/general.left') }}
{!! $errors->first('labels_width', '') !!} {!! $errors->first('labels_height', '') !!}
{{ Form::label('labels_pagewidth', trans('admin/settings/general.page_dimensions'), ['class'=>'control-label']) }}
{{ Form::text('labels_pagewidth', old('labels_pagewidth', $setting->labels_pagewidth), ['class' => 'form-control', 'aria-label'=>'labels_pagewidth']) }}
{{ trans('admin/settings/general.width_w') }}
{{ Form::text('labels_pageheight', old('labels_pageheight', $setting->labels_pageheight), ['class' => 'form-control', 'aria-label'=>'labels_pageheight']) }}
{{ trans('admin/settings/general.height_h') }}
{!! $errors->first('labels_pagewidth', '') !!} {!! $errors->first('labels_pageheight', '') !!}
@endif @if(!$setting->label2_enable)
{{ Form::label('labels_display', trans('admin/settings/general.label_fields'), ['class' => 'control-label']) }}
@endif
{{Form::close()}} @stop