{!!Form::horizondal_open()
->id('facilityInspectionReportForm')
->secure()
->method('POST')
->files('true')
->enctype('multipart/form-data') !!}
{!! Form::select('search[company_id]')
-> options(Company::companies (),user('admin.web')->current_comp)
-> id('company_id')
-> disabled()
-> addGroupClass('form-group-sm')
-> label('Company')
-> placeholder('Select Company')
!!}
{!! Form::select('search[division_id]')
-> options(Company::divisions())
-> id('division_id')
-> addGroupClass('form-group-sm')
-> label('Divsion')
-> placeholder('Select Division')
!!}
{!! Form::select('search[block_id]')
-> options(array())
-> addGroupClass('form-group-sm')
-> label('Block')
-> placeholder('Block')
->id('block_id')
!!}
{!! Form::select('search[section_id]')
-> options(array())
-> addGroupClass('form-group-sm')
-> label('Section')
-> placeholder('Section')
->id('section_id')
!!}
{!! Form::select('search[location_id]')
-> options(array())
-> id('location_id')
-> addGroupClass('form-group-sm')
-> label('Location')
-> placeholder('Select Location')
!!}
{!! Form::select('search[sublocation_id]')
-> options(array())
-> id('sublocation_id')
-> addGroupClass('form-group-sm')
-> label('Sub Location')
-> placeholder('Select Sub Location')
!!}
{!!Form::close()!!}