{!! Form::label('title_sw', 'Title swahili *') !!}
{!! Form::text('title_sw',null,['class'=>'form-control']) !!}
{!! Form::label('title_en', 'Title English *') !!}
{!! Form::text('title_en',null,['class'=>'form-control']) !!}
{!! Form::label('content_sw', 'Description swahili *') !!}
{!! Form::textarea('content_sw',null,['class'=>'form-control']) !!}
{!! Form::label('content_en', 'Description English *') !!}
{!! Form::textarea('content_en',null,['class'=>'form-control']) !!}
{!! Form::label('active', 'Status') !!}
{!! Form::select('active', array('1' => 'Active','0'=>'Inactive'),null,['class'=>'form-control']) !!}
{!! Form::submit($submitButton, ['class' => 'btn btn-primary col-md-12']) !!}