@extends('layouts.dashboard_sidebar') @section('title', 'Search For Files') @section('main-content')

Search

{!! Form::open(array('route' => 'search', 'id' => 'form-upload', 'method' => 'get')) !!}
{!! Form::text('search', Request::old('search'), array('class' => 'form-control', 'id' => 'search', 'placeholder' => 'search by lab name or filename')) !!} {!! $errors->first('search', '
Error! :message
') !!}
{!! Form::button('Search', array('class' => 'btn btn-primary form-control', 'type' => 'submit')) !!}
{!! Form::close() !!}
@stop