@if($errors->count()) @endif
{{-- photo upload --}}
{!! Form::label('photo_url', ' ') !!} {!! Form::hidden('photo_url', null,['id' => 'upload_img','class'=>'form-control']) !!}
{!! Form::label('fullname', 'Person Full name') !!} {!! Form::text('fullname',null,['class'=>'form-control','placeholder'=>'Julius Nyerere']) !!}
{!! Form::label('party', 'Party*') !!} {!! Form::select('party', array('CCM'=>'CCM','ZANU-PF'=>'ZANU-PF','SWAPO'=>'SWAPO','MPLA'=>'MPLA','ANC'=>'ANC','FRELIMO'=>'FRELIMO','CPC'=>'CPC'),null,['class'=>'form-control','id'=>'position-value', 'onchange'=>"document.getElementById('active-year').hidden=this.value!=2"]) !!}
{!! Form::label('position', 'Position*') !!} {!! Form::select('position', array('1'=>'1','2'=>'2'),null,['class'=>'form-control','id'=>'position-value', 'onchange'=>"document.getElementById('active-year').hidden=this.value!=2"]) !!}
{!! Form::label('content_sw', 'Description In Swahili*') !!} {!! Form::textarea('content_sw',null,['id'=>'redactor_sw','class'=>'form-control']) !!}
{!! Form::label('content_en', 'Description In English*') !!} {!! Form::textarea('content_en',null,['id'=>'redactor_en','class'=>'form-control']) !!}
{!! Form::submit($submitButton, ['class' => 'btn btn-primary col-md-6 offset-md-3']) !!}