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

Labels

{{ Form::label('labels_per_page', trans('admin/settings/general.labels_per_page')) }}
{{ Form::text('labels_per_page', Input::old('labels_per_page', $setting->labels_per_page), array('class' => 'form-control','style' => 'width: 100px;')) }} {!! $errors->first('labels_per_page', ':message') !!}
{{ Form::label('labels_width', trans('admin/settings/general.labels_fontsize')) }}
{{ Form::text('labels_fontsize', Input::old('labels_fontsize', $setting->labels_fontsize), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.text_pt') }}
{!! $errors->first('labels_fontsize', ':message') !!}
{{ Form::label('labels_width', trans('admin/settings/general.label_dimensions')) }}
{{ Form::text('labels_width', Input::old('labels_width', $setting->labels_width), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.width_w') }}
{{ Form::text('labels_height', Input::old('labels_height', $setting->labels_height), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.height_h') }}
{!! $errors->first('labels_width', ':message') !!} {!! $errors->first('labels_height', ':message') !!}
{{ Form::label('labels_width', trans('admin/settings/general.label_gutters')) }}
{{ Form::text('labels_display_sgutter', Input::old('labels_display_sgutter', $setting->labels_display_sgutter), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.horizontal') }}
{{ Form::text('labels_display_bgutter', Input::old('labels_display_bgutter', $setting->labels_display_bgutter), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.vertical') }}
{!! $errors->first('labels_display_sgutter', ':message') !!} {!! $errors->first('labels_display_bgutter', ':message') !!}
{{ Form::label('labels_width', trans('admin/settings/general.page_padding')) }}
{{ Form::text('labels_pmargin_top', Input::old('labels_pmargin_top', $setting->labels_pmargin_top), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.top') }}
{{ Form::text('labels_pmargin_right', Input::old('labels_pmargin_right', $setting->labels_pmargin_right), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.right') }}
{{ Form::text('labels_pmargin_bottom', Input::old('labels_pmargin_bottom', $setting->labels_pmargin_bottom), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.bottom') }}
{{ Form::text('labels_pmargin_left', Input::old('labels_pmargin_left', $setting->labels_pmargin_left), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.left') }}
{!! $errors->first('labels_width', ':message') !!} {!! $errors->first('labels_height', ':message') !!}
{{ Form::label('labels_width', trans('admin/settings/general.page_dimensions')) }}
{{ Form::text('labels_pagewidth', Input::old('labels_pagewidth', $setting->labels_pagewidth), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.width_w') }}
{{ Form::text('labels_pageheight', Input::old('labels_pageheight', $setting->labels_pageheight), array('class' => 'form-control')) }}
{{ trans('admin/settings/general.height_h') }}
{!! $errors->first('labels_pagewidth', ':message') !!} {!! $errors->first('labels_pageheight', ':message') !!}
{{ Form::label('labels_width', trans('admin/settings/general.label_fields')) }}
{{Form::close()}} @stop