@extends('layout.layout') @section('title') Dashboard @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Patient Species/Weight Report @endslot @slot('li_1') @endslot @endcomponent
{!! HTML::ul($errors->all()) !!} {!! Form::open(array('route' => 'PatientSpeciesReport', 'method'=>'GET','files'=>true)) !!}
{!! Form::Label('patType_id', 'Species') !!}
{!! Form::label('gender', 'Sex') !!} {!! Form::select('gender', array('A'=>'All', 'M'=>'Male', 'F'=>'Female', 'S'=>'Spay', 'N'=>'Neutered'), null, array('class' => 'form-control input-sm form-control-sm', 'required')) !!}
{!! Form::label('min_age', 'Min. Age (Yrs)') !!}
{!! Form::label('max_age', 'Max. Age (Yrs)') !!}
{!! Form::label('min_weight', 'Minimum Weight') !!}
{!! Form::label('max_weight', 'Maximum Weight') !!}


{!! Form::label('last_seen', 'Date Last Seen') !!} {!! Form::date('last_seen', Request::old('last_seen'), array('class' => 'form-control input-sm form-control-sm', 'required', 'id'=>'last_seen')) !!}

{!! Form::Label('branch_id', 'Branch') !!}
{!! Form::submit('Submit', array('class' => 'btn btn-sm btn-primary')) !!}
{!! Form::close() !!}
@endsection