{{ Form::label('name',__('Name')) }}
{{ Form::text('name',old('name') ? old('name') : (!empty($record) ? $record->name : null), [ 'class' => 'form-control', 'placeholder' => 'Enter Name', 'id' => 'name', 'disabled' => ($option == 'show' ? 'disabled' : null), 'required', ]) }}
{{ Form::label('country_id',__('Country')) }}
{{ Form::label('start_date',__('Start Date')) }}
{{ Form::text('start_date',old('start_date') ? old('start_date') : (!empty($record) ? $record->start_date : null), [ 'class' => 'form-control', 'disabled' => ($option == 'show' ? 'disabled' : null), 'data-inputmask' => \app\Helpers\MyHelpers::format_input(), 'id' => 'start_date', 'required', 'data-mask' ]) }}
{{ Form::label('end_date',__('End Date')) }}
{{ Form::text('end_date',old('end_date') ? old('end_date') : (!empty($record) ? $record->end_date : null), [ 'class' => 'form-control', 'disabled' => ($option == 'show' ? 'disabled' : null), 'data-inputmask' => \app\Helpers\MyHelpers::format_input(), 'id' => 'end_date', 'required', 'data-mask' ]) }}
{{ Form::label('active',__('Active ?')) }}
{{ Form::select('active',\app\Helpers\MyHelpers::select_yesno(),(!empty($record) ? $record->active : 0), [ 'class' => 'form-control', 'disabled' => ($option == 'show' ? 'disabled' : null), 'id' => 'active', ]) }}
{{ Form::label('actual_data',__('Data')) }}
{{ Form::label('pessimistic',__('Behavior')) }}
@php $blnPessimis = false; $blnOptimist = false; if (in_array($option,['update','show'])) { $blnPessimis = $record->pessimistic == 1; $blnOptimist = $record->pessimistic == 0; } @endphp      
@lang('Objectives')
@lang('Optimum')
{!! Form::number('objective_o', $record->objective_o, [ 'class' => 'form-control', 'disabled' => $strDisaFiel, 'id' => 'objective_o' ]) !!}
@lang('Acceptable')
{!! Form::number('objective_a', $record->objective_a, [ 'class' => 'form-control', 'disabled' => $strDisaFiel, 'id' => 'objective_a' ]) !!}
@lang('Deficient')
{!! Form::number('objective_d', $record->objective_d, [ 'class' => 'form-control', 'disabled' => $strDisaFiel, 'id' => 'objective_d' ]) !!}
@lang('Perspectives')
@lang('Optimum')
{!! Form::number('perspective_o', $record->perspective_o, [ 'class' => 'form-control', 'disabled' => $strDisaFiel, 'id' => 'perspective_o' ]) !!}
@lang('Acceptable')
{!! Form::number('perspective_a', $record->perspective_a, [ 'class' => 'form-control', 'disabled' => $strDisaFiel, 'id' => 'perspective_a' ]) !!}
@lang('Deficient')
{!! Form::number('perspective_d', $record->perspective_d, [ 'class' => 'form-control', 'disabled' => $strDisaFiel, 'id' => 'perspective_d' ]) !!}
@lang('Pessimistic'): @lang('Objectives and Perspectives assume the color or the lower KPI')
@lang('Optimistic'): @lang('Objectives and Perspectives behaviors can be customized')