@extends('layouts.main') @section('title','Pro Corproate Operation Role Users List') @section('content')
@if (\Session::get('success'))
×

Success! {!! \Session::get('success') !!}.

@endif @if (\Session::has('error'))
Error! {!! \Session::get('error') !!}
@endif
Show
Entries
Search
Please wait, Loading...
{!! Form::open(['name'=>'testpin-allocation','id'=>'js-operations-user-limit-form']) !!}

Testpin Allocation Details

Name
{!! Form::hidden('operation_user_name',"",array('class'=>'form-control ','id'=>'js-operations-user_name','placeholder'=>'Recruiter Name','readonly'=>'readonly')) !!}
E-mail
{!! Form::hidden('operation_user_email',"",array('class'=>'form-control ','id'=>'js-operations-user_email','placeholder'=>'Recruiter Email Address','readonly'=>'readonly')) !!} {!! Form::hidden('company_id',"",array('class'=>'form-control','id'=>'js-company_id')) !!} {!! Form::hidden('operator_id',"",array('class'=>'form-control','id'=>'js-operator_id')) !!} {!! Form::hidden('operator_role_id',"",array('class'=>'form-control','id'=>'js-operator_role_id')) !!}
@php @endphp @foreach($question_type_category_master as $key=>$question_type_category)
{{$question_type_category['name']}}
@php $category_id = $question_type_category['category_id']; $count = !empty($question_type_category['count']) ? $question_type_category['count'] : 0; @endphp {!! Form::number('question_type_category_id['.$category_id.'][]',null,array('class'=>'w-50 form-control limit-counter js-tooltip-validate type_category','data-category-id'=>$category_id,'id'=>'question_type_category_id_'.$category_id,'placeholder'=>'Number of Testpin','min' =>0,'max' =>$count ,'maxlength'=>6)) !!} Available Testpin - {{$count}}
@endforeach
{!! Form::close() !!}
@endsection