@extends('layout.layout') @section('title') Dashboard @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Patient Flag Report @endslot @slot('li_1') @endslot @endcomponent
{!! HTML::ul($errors->all()) !!} {!! Form::open(array('route' => 'PatientFlagReport', 'method'=>'GET','files'=>true)) !!}
{!! Form::Label('branch_id', 'Branch') !!}
{!! Form::label('patient_flag', 'Patient Flag To Search') !!} {!! Form::select('patient_flag', array('A'=>'Active Patients', 'I'=>'Inactive Patients'), null, array('class' => 'form-control input-sm form-control-sm', 'required')) !!}

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