@if($errors->count()) @endif
Contents
{!! Form::label('photo_url', ' ') !!} {!! Form::hidden('photo_url', null,['id' => 'upload_img','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('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('project_stage', 'Project Stage') !!} {!! Form::select('project_stage',array('' => 'Select Stage','1' => 'Real Estate','2'=>'consultancy', '3'=>'construction'),null,['class'=>'form-control']) !!}
{!! 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']) !!}