{!! Form::label('photo_url', ' ') !!}
{!! Form::hidden('photo_url', null,['id' => 'upload_img','class'=>'form-control']) !!}
{!! Form::label('start_date', 'Start Date') !!}
{!! Form::date('start_date',null,['class'=>'form-control']) !!}
{!! Form::label('end_date', 'End Date') !!}
{!! Form::date('end_date',null,['class'=>'form-control']) !!}
{!! Form::label('start_time', 'Event Start Time') !!}
{!! Form::time('start_time',null,['class'=>'form-control']) !!}
{!! Form::label('end_time', 'Event End Time') !!}
{!! Form::time('end_time',null,['class'=>'form-control']) !!}
{!! Form::label('location', 'Event Location') !!}
{!! Form::text('location',null,['class'=>'form-control', 'placeholder' => 'Event Location']) !!}
{!! Form::label('contact', 'Contact [name, email and/or phone number]') !!}
{!! Form::text('contact',null,['class'=>'form-control', 'placeholder' => 'eg: John Doe, johndoe@mail.com']) !!}
{!! 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('youtube_url', 'Youtube Video Url') !!}
{!! Form::text('youtube_url',null,['class'=>'form-control']) !!}
{!! Form::label('active', 'Status') !!}
{!! Form::select('active',array('1' => 'Active','0'=>'In Active'),null,['class'=>'form-control']) !!}
{!! Form::submit($submitButton, ['class'=>'btn btn-primary form-control']) !!}