{!! Form::label('file_sw', 'File in Swahili (use PDF)') !!}
{!! Form::file('file_sw',['class'=>'form-control']) !!}
{!! Form::label('file_en', 'File in English (use PDF)') !!}
{!! Form::file('file_en',['class'=>'form-control']) !!}
{!! Form::label('name_sw', 'Title/Name in Swahili') !!}
{!! Form::text('name_sw',null,['class'=>'form-control']) !!}
{!! Form::label('name_en', 'Title/Name in English') !!}
{!! Form::text('name_en',null,['class'=>'form-control']) !!}
{!! Form::label('content_sw', 'Content Summary in Swahili') !!}
{!! Form::textarea('content_sw', null, ['id' => 'redactor_sw', 'class' => 'form-control']) !!}
{!! Form::label('content_en', 'ContentSummary in English') !!}
{!! Form::textarea('content_en', null, ['id' => 'redactor_en', 'class' => 'form-control']) !!}
{!! Form::label('active', 'Status') !!}
{!! Form::select('active', array('1' => 'Published','0'=>'UnPublished'),null,['class'=>'form-control']) !!}
{!! Form::submit($submitButton, ['class' => 'btn btn-primary col-md-12']) !!}