@extends('layouts.main') @section('content')
| {{trans('app.id')}} | {{trans('app.pim.employees.qualifications.work_experience.job_title')}} | {{trans('app.pim.employees.qualifications.work_experience.start_date')}} | {{trans('app.pim.employees.qualifications.work_experience.end_date')}} | {{trans('app.pim.employees.qualifications.work_experience.company_name')}} | {!! Form::select('company_id', $companies, null, ['placeholder' => trans('app.pim.employees.qualifications.work_experience.company_name')]) !!} |
|---|
| {{trans('app.id')}} | {{trans('app.pim.employees.qualifications.education.type')}} | {{trans('app.pim.employees.qualifications.education.institution')}} | {{trans('app.pim.employees.qualifications.education.major')}} | {{trans('app.pim.employees.qualifications.education.year')}} | {!! Form::select('type', education_types(), null, ['placeholder' => trans('app.pim.employees.qualifications.education.type')]) !!} | {!! Form::select('education_institution_id', $education_institutions, null, ['placeholder' => trans('app.pim.employees.qualifications.education.institution')]) !!} |
|---|
| {{trans('app.id')}} | {{trans('app.pim.employees.qualifications.languages.language')}} | {{trans('app.pim.employees.qualifications.languages.level')}} | {{trans('app.pim.employees.qualifications.languages.skill')}} | {!! Form::select('language_id', $languages, null, ['placeholder' => trans('app.pim.employees.qualifications.languages.language')]) !!} | {!! Form::select('level', language_levels(), null, ['placeholder' => trans('app.pim.employees.qualifications.languages.level')]) !!} | {!! Form::select('skill', language_skills(), null, ['placeholder' => trans('app.pim.employees.qualifications.languages.skill')]) !!} |
|---|