@if(in_array('service_staff' ,$enabled_modules))
{!! Form::label('service_staff', __('repair::lang.assign_service_staff') . ':') !!}
{!! Form::select('service_staff', $technecians, $job_sheet->service_staff, ['class' => 'form-control select2', 'placeholder' => __('restaurant.select_service_staff')]); !!}
@endif
{!! Form::label('comment_by_ss', __('repair::lang.comment_by_ss') . ':') !!}
{!! Form::textarea('comment_by_ss', $job_sheet->comment_by_ss, ['class' => 'form-control bd-rd-7', 'rows' => '3']); !!}
{!! Form::label('estimated_cost', __('repair::lang.estimated_cost') . ':') !!}
{!! Form::text('estimated_cost', !empty($job_sheet->estimated_cost) ? @num_format($job_sheet->estimated_cost) : null, ['class' => 'form-control input_number bd-rd-7', 'placeholder' => __('repair::lang.estimated_cost')]); !!}
@php
$custom_field_1_label = !empty($repair_settings['job_sheet_custom_field_1']) ? $repair_settings['job_sheet_custom_field_1'] : __('lang_v1.custom_field', ['number' => 1])
@endphp
{!! Form::label('custom_field_1', $custom_field_1_label . ':') !!}
{!! Form::text('custom_field_1', $job_sheet->custom_field_1, ['class' => 'form-control bd-rd-7']); !!}
@php
$custom_field_2_label = !empty($repair_settings['job_sheet_custom_field_2']) ? $repair_settings['job_sheet_custom_field_2'] : __('lang_v1.custom_field', ['number' => 2])
@endphp
{!! Form::label('custom_field_2', $custom_field_2_label . ':') !!}
{!! Form::text('custom_field_2', $job_sheet->custom_field_2, ['class' => 'form-control bd-rd-7']); !!}
@php
$custom_field_3_label = !empty($repair_settings['job_sheet_custom_field_3']) ? $repair_settings['job_sheet_custom_field_3'] : __('lang_v1.custom_field', ['number' => 3])
@endphp
{!! Form::label('custom_field_3', $custom_field_3_label . ':') !!}
{!! Form::text('custom_field_3', $job_sheet->custom_field_3, ['class' => 'form-control bd-rd-7']); !!}
@php
$custom_field_4_label = !empty($repair_settings['job_sheet_custom_field_4']) ? $repair_settings['job_sheet_custom_field_4'] : __('lang_v1.custom_field', ['number' => 4])
@endphp
{!! Form::label('custom_field_4', $custom_field_4_label . ':') !!}
{!! Form::text('custom_field_4', $job_sheet->custom_field_4, ['class' => 'form-control bd-rd-7']); !!}
@php
$custom_field_5_label = !empty($repair_settings['job_sheet_custom_field_5']) ? $repair_settings['job_sheet_custom_field_5'] : __('lang_v1.custom_field', ['number' => 5])
@endphp
{!! Form::label('custom_field_5', $custom_field_5_label . ':') !!}
{!! Form::text('custom_field_5', $job_sheet->custom_field_5, ['class' => 'form-control bd-rd-7']); !!}