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

Submit a Learning Result File

@if(!empty($errors->all()))
{{ Html::ul($errors->all())}}
@endif
{!! Form::label('fileid', 'File Name:') !!}
{{ Form::label('rscfile', 'File:') }} {{ Form::file('rscfile', ['class'=>'form-control']) }}
{{ Form::close() }}
@endsection