@extends($activeTemplate . 'user.loan.layout') @section('loan-content')
@lang('You are aplying to take loan')

(@lang('Be Sure Before Confirm'))

  • @lang('Plan Name') @lang($plan->name)
  • @lang('Loan Amount') {{showAmount($amount) }}
  • @lang('Total Installment') {{ $plan->total_installment }}
  • @php $perInstallment = $amount * $plan->per_installment / 100; @endphp
  • @lang('Per Installment') {{showAmount($perInstallment) }}
  • @lang('You Need To Pay') {{showAmount($perInstallment * $plan->total_installment) }}

@if ($plan->delay_value && getAmount($plan->delay_charge)) * @lang('If an installment is delayed for') {{ $plan->delay_value }} @lang('or more days then, an amount of'), {{showAmount($plan->delay_charge) }} @lang('will be applied for each day.') @endif

@lang('Application Form')
@csrf @if ($plan->instruction)

@php echo $plan->instruction @endphp

@endif
@endsection