{!! html()->label('Potential Production Cost / Incident ($)', 'inputPotentialProductionCost') !!}
{!! html()->text(
'potential_production_cost_incident',
old(
'potential_production_cost_incident',
currency_format($threat->riskAssessment->potential_production_cost_incident ?? 0, 'USD') ?? '0',
),
)->id('inputPotentialProductionCost')->class('form-control')->attribute('disabled', true) !!}
{!! html()->label('Potential Non Production Cost / Incident ($)', 'inputNonPotentialProductionCost') !!}
{!! html()->text(
'potential_non_production_cost_incident',
old(
'potential_non_production_cost_incident',
currency_format($threat->riskAssessment->potential_non_production_cost_incident ?? 0, 'USD') ?? '0',
),
)->id('inputNonPotentialProductionCost')->class('form-control') !!}