@extends('layouts.app') @section('content')

Apply for Loan

Simple, transparent and zero-interest EMI financing.

@if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif {{-- Active EMI Card --}}
Active EMI Card
{{ $emiCard->card_number }}
Available Limit ₹{{ number_format((float)$availableLimit, 2) }}
Card Limit ₹{{ number_format((float)$emiCard->card_limit, 2) }}
@if($activeLoanExists)
Existing Loan Application You already have a pending or active loan. A new loan application cannot be submitted until the existing loan is completed or closed.
@else
@csrf {{-- Loan Amount --}}

How much do you need?

Maximum available limit
Loan Amount
Enter any amount within your available limit.
₹1 ₹{{ number_format((float)$availableLimit, 0) }}
@foreach([ 10000, 25000, 50000, 100000 ] as $quickAmount) @if($quickAmount <= $availableLimit) @endif @endforeach
{{-- Tenure --}}

Select repayment period

Choose your EMI tenure
@foreach([ 3, 6, 9, 12, 18, 24, 36, 48 ] as $months)
@endforeach
{{-- Calculation --}}

Loan Summary

Live calculation
Loan Amount ₹0.00
Interest Rate ✓ 0% Interest
Interest Amount ₹0.00
Processing Fee Calculating...
Total Payable ₹0.00
Estimated Monthly EMI ₹0.00
{{-- Important Notice --}}
Important: This is a 0% interest loan. A processing fee may apply according to the current loan plan. The final processing fee and EMI amount will be confirmed before your application is submitted.
{{-- Submit --}}
By continuing, you confirm that the information provided is correct and agree to the applicable loan terms and repayment schedule.
@endif
@endsection