@extends('repair::layouts.repair_status') @section('title', __('repair::lang.repair_status')) @section('content')

{{__('repair::lang.repair_status')}}

@php $search_options = [ 'job_sheet_no' => __('repair::lang.job_sheet_no'), 'invoice_no' => __('sale.invoice_no') ]; $placeholder = __('repair::lang.job_sheet_or_invoice_no'); if (config('repair.enable_repair_check_using_mobile_num')) { $search_options['mobile_num'] = __('lang_v1.mobile_number'); $placeholder .= ' / '.__('lang_v1.mobile_number'); } @endphp
{!! Form::select('search_type', $search_options, null, ['class' => 'form-control width-60 pull-left select2']); !!} {!! Form::text('search_number', null, ['class' => 'form-control width-40 pull-left bd-rd-7', 'required', 'placeholder' => $placeholder]); !!}


@endsection @section('javascript') @endsection