@if($errors->count()) @endif
Contents
{!! Form::label('photo_url', ' ') !!} {!! Form::hidden('photo_url', null,['id' => 'upload_img','class'=>'form-control']) !!}
{!! Form::label('demand_driven_programs_en', 'English Demand Driven Program Name ') !!} {!! Form::text('demand_driven_programs_en',null,['class'=>'form-control']) !!}
{!! Form::label('demand_driven_programs_sw', 'Swahili Demand Driven Program Name') !!} {!! Form::text('demand_driven_programs_sw',null,['class'=>'form-control']) !!}
{!! Form::label('title_en', 'Title in English') !!} {!! Form::text('title_en',null,['class'=>'form-control']) !!}
{!! Form::label('title_sw', 'Title in Swahili') !!} {!! Form::text('title_sw',null,['class'=>'form-control']) !!}
{{--
{!! Form::label('summary_en', 'Summary in English') !!} {!! Form::textarea('summary_en', null, ['class' => 'form-control','rows'=>'3','cols'=>'80']) !!}
{!! Form::label('summary_sw', 'Summary in Swahili') !!} {!! Form::textarea('summary_sw', null, ['class' => 'form-control','rows'=>'3','cols'=>'80']) !!}
--}}
{!! Form::label('content_en', 'Content in English') !!} {!! Form::textarea('content_en', null, ['id' => 'redactor_en', 'class' => 'form-control','rows'=>'3','cols'=>'80']) !!}
{!! Form::label('content_sw', 'Content in Swahili') !!} {!! Form::textarea('content_sw', null, ['id' => 'redactor_sw', 'class' => 'form-control','rows'=>'3','cols'=>'80']) !!}
{!! Form::label('active', 'Status') !!} {!! Form::select('active',array('1' => 'Publish Now','0'=>'Not Published Now'),null,['class'=>'form-control']) !!}
{!! Form::submit($submitButton, ['class'=>'btn btn-primary form-control']) !!}