{!! Form::open(['action' => '\Modules\Repair\Http\Controllers\RepairSettingsController@updateJobsheetSettings', 'method' => 'post']) !!} @php $custom_labels = json_decode(session('business.custom_labels'), true); $contact_custom_fields = !empty($jobsheet_pdf_settings['contact_custom_fields']) ? $jobsheet_pdf_settings['contact_custom_fields'] : []; @endphp
@lang('repair::lang.job_sheet_pdf'):

@lang('lang_v1.fields_for_customer_details'):
{!! Form::label('customer_label', __('invoice.customer_label') . ':' ) !!} {!! Form::text('customer_label', $jobsheet_pdf_settings['customer_label'] ?? null, ['class' => 'form-control bd-rd-7', 'placeholder' => '' ]); !!}
{!! Form::label('client_id_label', __('lang_v1.client_id_label') . ':' ) !!} {!! Form::text('client_id_label', $jobsheet_pdf_settings['client_id_label'] ?? null, ['class' => 'form-control bd-rd-7', 'placeholder' => '' ]); !!}
{!! Form::label('client_tax_label', __('lang_v1.client_tax_label') . ':' ) !!} {!! Form::text('client_tax_label', $jobsheet_pdf_settings['client_tax_label'] ?? null, ['class' => 'form-control bd-rd-7', 'placeholder' => '' ]); !!}
@lang('repair::lang.job_sheet_label'):

{!! Form::label('repair::lang.label_width', __('repair::lang.label_width') . '(MM):' ) !!} {!! Form::text('label_width', $jobsheet_pdf_settings['label_width'] ?? 75, ['class' => 'form-control bd-rd-7', 'placeholder' => '' ]); !!}
{!! Form::label('repair::lang.label_height', __('repair::lang.label_height') . '(MM):' ) !!} {!! Form::text('label_height', $jobsheet_pdf_settings['label_height'] ?? 50, ['class' => 'form-control bd-rd-7', 'placeholder' => '' ]); !!}
@lang('repair::lang.customer_information'):
@lang('repair::lang.label_details'):
@lang('repair::lang.label_information'):
@lang('repair::lang.device_info'):

{{Form::submit('update', ['class'=>"btn btn-warning btn-big btn-flat"])}}
{!! Form::close() !!}