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

Add Learning Topic

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