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

Submit a JPLAS Result

@if(!empty($errors->all()))
{{ Html::ul($errors->all())}}
@endif
{!! Form::label('taskid', 'Learning Task:') !!}
{{ Form::label('image', 'Result File') }} {{ Form::file('image', ['class'=>'form-control']) }}
{{ Form::label('comment', 'Comment') }} {{ Form::textarea('comment', '', ['class'=>'form-control', 'placeholder'=>'Task Comment', 'rows'=>5]) }}
{{ Form::close() }}
@endsection