{!! Form::label('company_id', trans('app.pim.employees.qualifications.work_experience.company_name').': ', ['class' => 'col-sm-3']) !!}
{!! Form::select('company_id', $companies, null, ['class' => 'form-control']) !!}
{!! Form::label('job_title', trans('app.pim.employees.qualifications.work_experience.job_title').': ', ['class' => 'col-sm-3']) !!}
{!! Form::text('job_title', null, ['class' => 'form-control']) !!}
{!! Form::label('start_date', trans('app.pim.employees.qualifications.work_experience.start_date').': ', ['class' => 'col-sm-3']) !!}
{!! Form::input('date', 'start_date', null, ['class' => 'form-control']) !!}
{!! Form::label('end_date', trans('app.pim.employees.qualifications.work_experience.end_date').': ', ['class' => 'col-sm-3']) !!}
{!! Form::input('date', 'end_date', null, ['class' => 'form-control']) !!}
{!! Form::label('comment', trans('app.pim.employees.qualifications.work_experience.comments').': ', ['class' => 'col-sm-3']) !!}
{!! Form::textarea('comment', null, ['class' => 'form-control']) !!}
@include('errors._form-errors')
{{trans('app.cancel')}} {!! Form::submit($submitName, ['class' => 'btn btn-primary']) !!}