@extends('admin/admin') @section('content')
{{ Form::model($data,['route'=>['learning.update',$fileid], 'files'=>true,'method'=>'PUT']) }}

Change Data of Learning Topic

@if(!empty($errors->all()))
{{ Html::ul($errors->all())}}
@endif
{{ Form::label('guide', 'Guide File(s) (*.zip,*.rar) [Left empty if is not updated]') }} {{ Form::file('guide', ['class'=>'form-control']) }}
{{ Form::label('testfile', 'Test File(s) (*.zip,*.rar) [Left empty if is not updated]') }} {{ Form::file('testfile', ['class'=>'form-control']) }}
{{ Form::label('supplement', 'Supplement File(s) (*.zip,*.rar) [Left empty if is not updated]') }} {{ Form::file('supplement', ['class'=>'form-control']) }}
{{ Form::label('other', 'Other File(s) (*.zip,*.rar) [Left empty if is not updated]') }} {{ Form::file('other', ['class'=>'form-control']) }}
{{ Form::close() }}
@endsection