@extends('admin/admin') @section('content')
{{ Form::open(['route'=>'testfiles.store', 'files'=>true]) }}

Add Test File

@if(!empty($errors->all()))
{{ Html::ul($errors->all())}}
@endif
{{ Form::label('image', 'Test File (*.java)') }} {{ Form::file('testFile', ['class'=>'form-control']) }}
{{ Form::close() }}
@endsection