@extends('admin.layouts.master') @section('content')

{{ trans('app.custom_shipping_labels') }}

{!! Form::open(['route' => '', 'id' => 'form', 'class' => 'inline-form', 'data-toggle' => 'validator', 'files' => true]) !!}
{!! Form::label('template', trans('app.select_template') . '*', ['class' => 'with-help']) !!} {!! Form::select('template', [null => trans('app.please_select')] + $templates, null, ['class' => 'form-control select2-normal', 'required']) !!}
{!! Form::label('file', trans('app.file') . '*', ['class' => 'with-help']) !!}
{{ trans('app.browse') }}
{!! Form::label('image_config', trans('app.image_config') . '*', ['class' => 'with-help']) !!}
{!! Form::number('width', null, ['class' => 'form-control', 'placeholder' => trans('app.width')]) !!}
{!! Form::number('height', null, ['class' => 'form-control', 'placeholder' => trans('app.height')]) !!}
{!! Form::number('scale', null, ['class' => 'form-control', 'placeholder' => trans('app.scale')]) !!}
{!! Form::button(trans('app.save'), ['type' => 'submit', 'class' => 'confirm btn btn-new btn-flat']) !!} {!! Form::close() !!}
@endSection