@extends('admin.layout') @section('content')

{{ trans('Add IPQC Report') }}

@php $getUserRoleData = userRoleData(); $LeadSources = explode(",",$getUserRoleData->LeadSources); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
{!! Form::open(array('url' => route('ipqc-report.store'), 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addNewIPQC', 'enctype'=>'multipart/form-data')) !!}
{{ trans('labels.back') }}
{!! Form::select('company_id', $result['Company_info'], '', array('class'=>'form-control company_id', 'multiple'=>'', 'id'=>'company_id', 'required'=>'required')) !!}
{!! Form::text('format_no', 'RHYSLEY/10.2/F/02', array('class'=>'form-control', 'id'=>'format_no', 'required'=>'required', 'readonly'=>'readonly')) !!}
{!! Form::text('rev_number', '01', array('class'=>'form-control', 'id'=>'rev_number', 'required'=>'required', 'readonly'=>'readonly')) !!}
{!! Form::text('date', '25.01.2021', array('class'=>'form-control', 'id'=>'date', 'required'=>'required', 'readonly'=>'readonly')) !!}
{!! Form::text('ipqc_date', date('Y-m-d'), array('class'=>'form-control', 'id'=>'ipqc_date', 'readonly'=>'readonly', 'required'=>'required')) !!}
{!! Form::text('shift', '', array('class'=>'form-control space', 'id'=>'shift', 'required'=>'required')) !!}
{!! Form::text('client_code', '', array('class'=>'form-control space', 'id'=>'client_code', 'required'=>'required')) !!}
{!! Form::text('batch_no', '', array('class'=>'form-control space', 'id'=>'batch_no', 'required'=>'required')) !!}
{!! Form::text('model_no', '', array('class'=>'form-control', 'id'=>'model_no', 'required'=>'required', 'readonly'=>'readonly')) !!}
{!! Form::textarea('instructions', '', array('class'=>'form-control instructions space1', 'id'=>'instructions', 'required'=>'required', 'rows'=>'2')) !!}
  • S.N. Description Criteria Requirement Test Method Sampling-Time Result Remarks
    1 2 3 4 5 6 7 8
{!! Form::close() !!}
@endsection @section('scripts') @endsection