{!! Form::label('name', __('printer.name') . ':*') !!}
{!! Form::text('name', $printer->name, ['class' => 'form-control', 'required',
'placeholder' => __('lang_v1.printer_name_help')]); !!}
{!! Form::label('connection_type',__('printer.connection_type') . ':*') !!}
{!! Form::select('connection_type', $connection_types, $printer->connection_type, ['class' => 'form-control select2']); !!}
{!! Form::label('capability_profile',__('printer.capability_profile') . ':*') !!}
@show_tooltip(__('tooltip.capability_profile'))
{!! Form::select('capability_profile', $capability_profiles, $printer->capability_profile, ['class' => 'form-control select2']); !!}
{!! Form::label('char_per_line', __('printer.character_per_line') . ':*') !!}
{!! Form::number('char_per_line', $printer->char_per_line, ['class' => 'form-control', 'required',
'placeholder' => __('lang_v1.char_per_line_help')]); !!}
{!! Form::label('ip_address', __('printer.ip_address') . ':*') !!}
{!! Form::text('ip_address', $printer->ip_address, ['class' => 'form-control', 'required',
'placeholder' => __('lang_v1.ip_address_help')]); !!}
{!! Form::label('port', __('printer.port') . ':*') !!}
{!! Form::text('port', $printer->port, ['class' => 'form-control', 'required']); !!}
@lang('lang_v1.port_help')
{!! Form::label('path', __('printer.path') . ':*') !!}
{!! Form::text('path', $printer->path, ['class' => 'form-control', 'required']); !!}
Connection Type Windows: The device files will be along the lines of LPT1
(parallel) or COM1
(serial).
Connection Type Linux: Your printer device file will be somewhere like /dev/lp0
(parallel), /dev/usb/lp1
(USB), /dev/ttyUSB0
(USB-Serial), /dev/ttyS0
(serial).
@lang('messages.update')