{!! Form::select('country_id', [''=>'Select Country']+$countries, $country_id, array('class'=>'form-control', 'id'=>'experience_country_id')) !!}
{!! Form::select('state_id', [''=>'Select State'], null, array('class'=>'form-control', 'id'=>'experience_state_id')) !!}
{!! Form::select('city_id', [''=>'Select City'], null, array('class'=>'form-control', 'id'=>'city_id')) !!}
@php $experienceStartDate = ''; $experienceEndDate = ''; if (isset($profileExperience)) { try { $experienceStartDate = !empty($profileExperience->date_start) ? \Carbon\Carbon::parse($profileExperience->date_start)->format('Y-m-d') : ''; } catch (\Exception $e) { $experienceStartDate = ''; } try { $experienceEndDate = !empty($profileExperience->date_end) ? \Carbon\Carbon::parse($profileExperience->date_end)->format('Y-m-d') : ''; } catch (\Exception $e) { $experienceEndDate = ''; } } @endphp