{{ trans('update.payment_steps') }}
@if(!empty($installment) and !empty($installment->steps))
@php
$installmentSteps = explode(',', $installment->options);
@endphp
@foreach($installment->steps as $stepRow)
@include('admin.financial.installments.create.includes.installment_step_inputs',['step' => $stepRow])
@endforeach
@endif