ultimatepos/resources/views/printer/create.blade.php

88 lines
3.5 KiB
PHP

@extends('layouts.app')
@section('title', __('printer.add_printer'))
@section('content')
<style type="text/css">
</style>
<!-- Content Header (Page header) -->
<section class="content-header">
<h1 class="tw-text-xl md:tw-text-3xl tw-font-bold tw-text-black">@lang('printer.add_printer')</h1>
<!-- <ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
<li class="active">Here</li>
</ol> -->
</section>
<!-- Main content -->
<section class="content">
{!! Form::open(['url' => action([\App\Http\Controllers\PrinterController::class, 'store']), 'method' => 'post', 'id' => 'add_printer_form' ]) !!}
@component('components.widget')
<div class="row">
<div class="col-sm-12">
<div class="form-group">
{!! Form::label('name', __('printer.name') . ':*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required',
'placeholder' => __('lang_v1.printer_name_help')]); !!}
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
{!! Form::label('connection_type',__('printer.connection_type') . ':*') !!}
{!! Form::select('connection_type', $connection_types, null, ['class' => 'form-control select2']); !!}
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
{!! Form::label('capability_profile',__('printer.capability_profile') . ':*') !!}
@show_tooltip(__('tooltip.capability_profile'))
{!! Form::select('capability_profile', $capability_profiles, null, ['class' => 'form-control select2']); !!}
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
{!! Form::label('char_per_line', __('printer.character_per_line') . ':*') !!}
{!! Form::number('char_per_line', 42, ['class' => 'form-control', 'required',
'placeholder' => __('lang_v1.char_per_line_help')]); !!}
</div>
</div>
<div class="col-sm-12" id="ip_address_div">
<div class="form-group">
{!! Form::label('ip_address', __('printer.ip_address') . ':*') !!}
{!! Form::text('ip_address', null, ['class' => 'form-control', 'required', 'placeholder' => __('lang_v1.ip_address_help')]); !!}
</div>
</div>
<div class="col-sm-12" id="port_div">
<div class="form-group">
{!! Form::label('port', __('printer.port') . ':*') !!}
{!! Form::text('port', 9100, ['class' => 'form-control', 'required']); !!}
<span class="help-block">@lang('lang_v1.port_help')</span>
</div>
</div>
<div class="col-sm-12 hide" id="path_div">
<div class="form-group">
{!! Form::label('path', __('printer.path') . ':*') !!}
{!! Form::text('path', null, ['class' => 'form-control', 'required']); !!}
<span class="help-block">
<b>@lang('lang_v1.connection_type_windows'): </b> @lang('lang_v1.windows_type_help') <code>LPT1</code> (parallel) / <code>COM1</code> (serial). <br/>
<b>@lang('lang_v1.connection_type_linux'): </b> @lang('lang_v1.linux_type_help') <code>/dev/lp0</code> (parallel), <code>/dev/usb/lp1</code> (USB), <code>/dev/ttyUSB0</code> (USB-Serial), <code>/dev/ttyS0</code> (serial). <br/>
</span>
</div>
</div>
<div class="col-sm-12 text-center">
<button type="submit" class="btn btn-primary btn-big">@lang('messages.save')</button>
</div>
</div>
@endcomponent
{!! Form::close() !!}
</section>
<!-- /.content -->
@endsection