Overrides JobForm::actions
protected function actions(array $form, FormStateInterface $form_state) {
$actions['save'] = array(
'#type' => 'submit',
'#value' => t('Save job'),
'#submit' => array(
'::submitForm',
'::save',
),
'#weight' => 5,
'#button_type' => 'primary',
);
return $actions;
}