{!! APFrmErrHelp::showOnlyErrorsNotice($errors) !!} @include('flash::message')
Select Company logo Change {!! Form::file('logo', null, array('id'=>'logo')) !!} Remove
{!! APFrmErrHelp::showErrors($errors, 'logo') !!}
@if(isset($company))
{{ ImgUploader::print_image("company_logos/$company->logo") }}
@endif
{!! Form::label('name', 'Company Name', ['class' => 'bold']) !!} {!! Form::text('name', null, array('class'=>'form-control', 'id'=>'name', 'placeholder'=>'Company Name')) !!} {!! APFrmErrHelp::showErrors($errors, 'name') !!}
{!! Form::label('email', 'Company Email', ['class' => 'bold']) !!} {!! Form::text('email', null, array('class'=>'form-control', 'id'=>'email', 'placeholder'=>'Company Email')) !!} {!! APFrmErrHelp::showErrors($errors, 'email') !!}
{!! Form::label('password', 'Password', ['class' => 'bold']) !!} {!! Form::password('password', array('class'=>'form-control', 'id'=>'password', 'placeholder'=>'Password')) !!} {!! APFrmErrHelp::showErrors($errors, 'password') !!}
{!! Form::label('ceo', 'Company CEO', ['class' => 'bold']) !!} {!! Form::text('ceo', null, array('class'=>'form-control', 'id'=>'ceo', 'placeholder'=>'Company CEO')) !!} {!! APFrmErrHelp::showErrors($errors, 'ceo') !!}
{!! Form::label('industry_id', 'Industry', ['class' => 'bold']) !!} {!! Form::select('industry_id', ['' => 'Select Industry']+$industries, null, array('class'=>'form-control', 'id'=>'industry_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'industry_id') !!}
{!! Form::label('ownership_type', 'Ownership Type', ['class' => 'bold']) !!} {!! Form::select('ownership_type_id', ['' => 'Select Ownership type']+$ownershipTypes, null, array('class'=>'form-control', 'id'=>'ownership_type_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'ownership_type_id') !!}
{!! Form::label('description', 'Company details', ['class' => 'bold']) !!} {!! Form::textarea('description', null, array('class'=>'form-control', 'id'=>'description', 'placeholder'=>'Company details')) !!} {!! APFrmErrHelp::showErrors($errors, 'description') !!}
{!! Form::label('location', 'Location', ['class' => 'bold']) !!} {!! Form::text('location', null, array('class'=>'form-control', 'id'=>'location', 'placeholder'=>'Location')) !!} {!! APFrmErrHelp::showErrors($errors, 'location') !!}
{!! Form::label('map', 'Google Map', ['class' => 'bold']) !!} {!! Form::textarea('map', null, array('class'=>'form-control', 'id'=>'map', 'placeholder'=>'Google Map')) !!} {!! APFrmErrHelp::showErrors($errors, 'map') !!}
{!! Form::label('no_of_offices', 'Number of offices', ['class' => 'bold']) !!} {!! Form::select('no_of_offices', ['' => 'Select num. of offices']+MiscHelper::getNumOffices(), null, array('class'=>'form-control', 'id'=>'no_of_offices')) !!} {!! APFrmErrHelp::showErrors($errors, 'no_of_offices') !!}
{!! Form::label('website', 'Website', ['class' => 'bold']) !!} {!! Form::text('website', null, array('class'=>'form-control', 'id'=>'website', 'placeholder'=>'Website')) !!} {!! APFrmErrHelp::showErrors($errors, 'website') !!}
{!! Form::label('no_of_employees', 'Number of employees', ['class' => 'bold']) !!} {!! Form::select('no_of_employees', ['' => 'Select num. of employees']+MiscHelper::getNumEmployees(), null, array('class'=>'form-control', 'id'=>'no_of_employees')) !!} {!! APFrmErrHelp::showErrors($errors, 'no_of_employees') !!}
{!! Form::label('established_in', 'Established in', ['class' => 'bold']) !!} {!! Form::select('established_in', ['' => 'Select Established In']+MiscHelper::getEstablishedIn(), null, array('class'=>'form-control', 'id'=>'established_in')) !!} {!! APFrmErrHelp::showErrors($errors, 'established_in') !!}
{!! Form::label('phone', 'Phone #', ['class' => 'bold']) !!} {!! Form::text('phone', null, array('class'=>'form-control', 'id'=>'phone', 'placeholder'=>'Phone #')) !!} {!! APFrmErrHelp::showErrors($errors, 'phone') !!}
{!! Form::label('facebook', 'Facebook Address', ['class' => 'bold']) !!} {!! Form::text('facebook', null, array('class'=>'form-control', 'id'=>'facebook', 'placeholder'=>'Facebook address')) !!} {!! APFrmErrHelp::showErrors($errors, 'facebook') !!}
{!! Form::label('twitter', 'Twitter', ['class' => 'bold']) !!} {!! Form::text('twitter', null, array('class'=>'form-control', 'id'=>'twitter', 'placeholder'=>'Twitter')) !!} {!! APFrmErrHelp::showErrors($errors, 'twitter') !!}
{!! Form::label('linkedin', 'Linkedin', ['class' => 'bold']) !!} {!! Form::text('linkedin', null, array('class'=>'form-control', 'id'=>'linkedin', 'placeholder'=>'Linkedin')) !!} {!! APFrmErrHelp::showErrors($errors, 'linkedin') !!}
{!! Form::label('google_plus', 'Google+', ['class' => 'bold']) !!} {!! Form::text('google_plus', null, array('class'=>'form-control', 'id'=>'google_plus', 'placeholder'=>'Google+')) !!} {!! APFrmErrHelp::showErrors($errors, 'google_plus') !!}
{!! Form::label('pinterest', 'Pinterest', ['class' => 'bold']) !!} {!! Form::text('pinterest', null, array('class'=>'form-control', 'id'=>'pinterest', 'placeholder'=>'Pinterest')) !!} {!! APFrmErrHelp::showErrors($errors, 'pinterest') !!}
{!! Form::label('country_id', 'Country', ['class' => 'bold']) !!} {!! Form::select('country_id', ['' => 'Select Country']+$countries, old('country_id', (isset($company))? $company->country_id:$siteSetting->default_country_id), array('class'=>'form-control', 'id'=>'country_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'country_id') !!}
{!! Form::label('state_id', 'State', ['class' => 'bold']) !!} {!! Form::select('state_id', ['' => 'Select State'], null, array('class'=>'form-control', 'id'=>'state_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'state_id') !!}
{!! Form::label('city_id', 'City', ['class' => 'bold']) !!} {!! Form::select('city_id', ['' => 'Select City'], null, array('class'=>'form-control', 'id'=>'city_id')) !!} {!! APFrmErrHelp::showErrors($errors, 'city_id') !!}
{!! Form::label('company_package_id', 'Employer Package', ['class' => 'bold']) !!} {!! Form::select('company_package_id', ['' => 'Select Employer Package'] + $employerPackages, old('company_package_id', $selectedEmployerPackage), ['class' => 'form-control', 'id' => 'company_package_id'] ) !!} {!! APFrmErrHelp::showErrors($errors, 'company_package_id') !!}
{!! Form::label('cv_package_id', 'CV Package', ['class' => 'bold']) !!} {!! Form::select('cv_package_id', ['' => 'Select CV Package'] + $cvSearchPackages, $selectedCvPackage, ['class' => 'form-control', 'id' => 'cv_package_id']) !!}
@if(isset($company) && $company->package_id > 0)
{!! Form::label('package', 'Employer Package : ', ['class' => 'bold']) !!} {{ optional($company->getPackage())->package_title }}
{!! Form::label('package_Duration', 'Package Duration : ', ['class' => 'bold']) !!} {{ optional($company->package_start_date)->format('d M, Y') }} - {{ optional($company->package_end_date)->format('d M, Y') }}
{!! Form::label('package_quota', 'Availed quota : ', ['class' => 'bold']) !!} {{ $company->availed_jobs_quota }} / {{ $company->jobs_quota }}

@endif @if(isset($company) && $company->cvs_package_id > 0)
{!! Form::label('cvs_package', 'CV Search Package : ', ['class' => 'bold']) !!} {{ optional($company->cvs_getPackage())->package_title }}
{!! Form::label('cvs_package_Duration', 'CV Package Duration : ', ['class' => 'bold']) !!} {{ $company->cvs_package_start_date ? \Carbon\Carbon::parse($company->cvs_package_start_date)->format('d M, Y') : 'N/A' }} - {{ $company->cvs_package_end_date ? \Carbon\Carbon::parse($company->cvs_package_end_date)->format('d M, Y') : 'N/A' }}
{!! Form::label('cvs_quota', 'Available CV Quota : ', ['class' => 'bold']) !!} {{ $company->availed_cvs_quota ?? 0 }} / {{ $company->cvs_quota ?? 0 }}
@endif
{!! Form::label('is_active', 'Is Active?', ['class' => 'bold']) !!}