@if(!empty($errors->all()))
{{ Html::ul($errors->all())}}
@endif
{{ Form::label('name', 'Topic Name') }}
{{ Form::text('name', $topic['name'], ['class'=>'form-control', 'placeholder'=>'Enter Topic Name']) }}
{{ Form::label('stage', 'Learning Stage') }}
{{ Form::text('stage', $topic['stage'], ['class'=>'form-control', 'placeholder'=>'Enter Learning Stage']) }}
{{ Form::label('packname', 'Android Package (ex: org.aplas.basicapp)') }}
{{ Form::text('packname', $topic['packname'], ['class'=>'form-control', 'placeholder'=>'Enter Android Project package name']) }}
{{ Form::label('projectpath', 'Project Folder Path') }}
{{ Form::text('projectpath', $topic['projectpath'], ['class'=>'form-control', 'placeholder'=>'Enter Project Folder Path']) }}
{{ Form::label('desc', 'Description') }}
{{ Form::textarea('desc', $topic['desc'], ['class'=>'form-control', 'placeholder'=>'Enter description', 'rows'=>5]) }}