{!! Form::label('name', trans('app.settings.salary_components.name').':', ['class' => 'col-sm-3']) !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('contract_type_id', trans('app.settings.salary_components.contract_type').':', ['class' => 'col-sm-3']) !!}
{!! Form::select('contract_type_id', $contractTypes, null, ['class' => 'form-control']) !!}
{!! Form::label('type', trans('app.settings.salary_components.type').':', ['class' => 'col-sm-3']) !!}
@foreach(salary_component_types() as $key => $component) {!! Form::label('type', $component) !!} {!! Form::radio('type', $key) !!} @endforeach
{!! Form::label('cost', trans('app.settings.salary_components.is_cost').':', ['class' => 'col-sm-3']) !!}
{!! Form::label('is_cost', trans('app.yes')) !!} {!! Form::radio('is_cost', '1') !!} {!! Form::label('is_cost', trans('app.no')) !!} {!! Form::radio('is_cost', '0') !!}
@include('errors._form-errors')
{{trans('app.cancel')}} {!! Form::submit($submitName, ['class' => 'btn btn-primary']) !!}