Recruiter Profile
Success!{{ Session::get('success') }}
@endif
@if(Session::get('error'))
{!! Form::open(array('url' => secure_url('recruiter-profile-update'), 'method'=>'POST','class'=>'form-horizontal','name'=>'recruiterprofile','id'=>'recruiterprofile')) !!}
{!! Form::close() !!}
{!! Form::text('first_name',$getrecruiterdetails->profile ? $getrecruiterdetails->profile->first_name : "",['class'=>'form-control','id'=>'first_name','maxlength' => '100' ]) !!}
@if ($errors->has('first_name'))
@endif
{!! Form::text('last_name',$getrecruiterdetails->profile ? $getrecruiterdetails->profile->last_name : "",['class'=>'form-control','id'=>'last_name','maxlength' => '50' ]) !!}
@if ($errors->has('last_name'))
@endif
{!! Form::text('mobile_number',$getrecruiterdetails->mobile_number ? $getrecruiterdetails->mobile_number : "" ,['class'=>'form-control','id'=>'mobileNumber','placeholder'=>'Mobile Number', 'maxlength' => '10','disabled'=>' disabled' ]) !!}
{!! Form::text('email_address',$getrecruiterdetails ? $getrecruiterdetails->email_address : "",['class'=>'form-control','id'=>'emailAddress','placeholder'=>'Email
Address','maxlength' => '100','disabled'=>' disabled']) !!}
{!! Form::textarea('about_summery',$getrecruiterdetails->profile ? $getrecruiterdetails->profile->about_summery : "" , ['id' => 'recruiter-about_summery','class'=>'form-control max-textarea']) !!}
@if ($errors->has('about_summery'))
@endif
{!! Form::text('company_name', $getrecruiterdetails->company ? $getrecruiterdetails->company->company_name : "", ['id' => 'company_name','class'=>'form-control max-textarea','maxlength' => '100','disabled'=>'disabled']) !!}
@if ($errors->has('company_name'))
@endif
{!! Form::select("state",$state,$getrecruiterdetails->profile ? $getrecruiterdetails->profile->state : "",array("class"=>"form-control select1","id"=>"js_state","data-live-search"=>"true",'placeholder' => '')) !!}
@if ($errors->has('state'))
@endif
{!! Form::select("city",$district,$getrecruiterdetails->profile ? $getrecruiterdetails->profile->city : "",array("class"=>"form-control select1","id"=>"js-city","data-live-search"=>"true",'data-placeholder' => 'Please Select District')) !!}
@if ($errors->has('city'))
@endif
Upload Logo
Upload Logo
Please wait, Loading...
@php $auth = Auth::guard('corporate')->user();
$recruiterimage = $auth->image ? \HireMeeHelper::getAWSImageUrl($auth->image->s3_id,config('filesystems.disks.s3.bucket')) : secure_asset('assets/images/user.png'); @endphp