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

Search

@if(isset($searchLengthError))
{{ $searchLengthError }}
@endif {!! Form::open(array('route' => 'search_post', 'files' => true, 'id' => 'form-upload')) !!}
{!! Form::text('search', Request::old('search'), array('class' => 'form-control', 'id' => 'search', 'placeholder' => 'search by filename')) !!} {!! $errors->first('search', '
Error! :message
') !!}
{!! Form::button('Search', array('class' => 'btn btn-primary form-control', 'type' => 'submit')) !!}
{!! Form::close() !!}
@stop