@extends($activeTemplate . 'layouts.master') @section('content')
@lang('You are aplying to take loan')

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

  • @lang('Plan Name') @lang($plan->name)
  • @lang('Loan Amount') {{ $general->cur_sym . showAmount($amount) }}
  • @lang('Total Installment') {{ $plan->total_installment }}
  • @php $per_intallment = $amount * $plan->per_installment / 100; @endphp
  • @lang('Per Installment') {{ $general->cur_sym . showAmount($per_intallment) }}
  • @lang('You Need To Pay') {{ $general->cur_sym . showAmount($per_intallment * $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'), {{ $general->cur_sym . 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 @push('bottom-menu')
  • @lang('Loan Plans')
  • @lang('My Loan List')
  • @endpush