@extends("layout") @section("content")
{{trans('messages.specimen-collected-by')}}
@if($errors->all())
{{ HTML::ul($errors->all()) }}
@endif {{ Form::open(array('route' => 'unhls_test.collectSpecimenAction')) }}
{{ Form::label('collection_date', 'Date of Sample Collection') }} {{Form::text('collection_date', Input::old('collection_date'), array('class' => 'form-control standard-datepicker'))}} {{ Form::label('sample_time', 'Time of Sample Collection') }} {{Form::text('sample_time', Input::old('sample_time'), array('class' => 'form-control', 'placeholder' => 'HH:MM'))}}
{{ Form::label('sample_obtainer', 'Sample Collected by') }} {{Form::text('sample_obtainer', Input::old('sample_obtainer'), array('class' => 'form-control'))}} {{ Form::label('cadre_obtainer', 'Cadre') }} {{Form::text('cadre_obtainer', Input::old('cadre_obtainer'), array('class' => 'form-control'))}}
{{ Form::label('recieved_date', 'Date sample recieved in Lab') }} {{Form::text('recieved_date', Input::old('recieved_date'), array('class' => 'form-control standard-datepicker'))}} {{ Form::label('sample_time', 'Time Sample Recieved in Lab') }} {{Form::text('sample_time', Input::old('sample_time'), array('class' => 'form-control', 'placeholder' => 'HH:MM'))}}
{{ Form::label('sample_reciever', 'Sample Recieved by') }} {{Form::text('sample_reciever', Input::old('sample_reciever'), array('class' => 'form-control'))}} {{ Form::label('cadre_reciever', 'Cadre') }} {{Form::text('cadre_reciever', Input::old('cadre_reciever'), array('class' => 'form-control'))}}
{{ Form::button(" ".trans('messages.save'), ['class' => 'btn btn-primary', 'onclick' => 'submit()']) }}
{{ Form::close() }}
@stop