@extends("layout") @section("content")
BOX A (Inputs)

{{ Form::label('tests', 'Number of Tests Requested') }} {{ Form::text('tests', Input::old('tests'),array('class' => 'form-control', 'rows' => '2', 'id'=>'folio_number')) }}
{{ Form::label('weeks', 'Number of weeks ordering for') }} {{ Form::text('weeksr', Input::old('weeks'),array('class' => 'form-control', 'rows' => '2', 'id'=>'folio_number')) }}
{{ Form::label('batch_size', 'Batch size (No. of tests per run)') }} {{ Form::text('batch_size', Input::old('batch_size'),array('class' => 'form-control', 'rows' => '2', 'id'=>'folio_number')) }}
@if (Session::has('message'))
{{ trans(Session::get('message')) }}
@endif @if($errors->all())
{{ HTML::ul($errors->all()) }}
@endif
New in-house requisition
# # Product Description Cat No. Pack Size No. Of Tests Per Pack Packs Required
1 Abbott RealTime HIV-1 Amplification Reagent Kit 2G31-90 1 pack with 4 boxes x 24 tests 93
{{ Form::button(" ".trans('messages.save'), array('class' => 'btn btn-primary', 'onclick' => 'submit()')) }}
{{ Form::close() }}