@extends('layouts.app') @section('content') {{-- Sub Hero --}}

FAQ's

{{-- Faqs --}}

FREQUENTLY ASKED QUESTIONS

Everything You Need to Know!

@php // Pull dynamic values from site_settings $minSalary = (int) (site_setting('loan_min_salary') ?? 15000); $minAmount = (int) (site_setting('loan_min_amount') ?? 50000); $maxAmount = (int) (site_setting('loan_max_amount') ?? 500000); $tenureDef = (int) (site_setting('loan_default_tenure_months') ?? 12); $tenureMin = (int) (site_setting('loan_min_tenure_months') ?? 12); $tenureMax = (int) (site_setting('loan_max_tenure_months') ?? 60); // Basic INR formatting $fmt = fn(int $n) => '₹' . number_format($n); // FAQ content map $faqs = [ [ 'q' => 'What is the minimum salary required to apply for a loan?', 'a' => "

To be eligible for a loan, you should have a minimum monthly salary of {$fmt( $minSalary, )}. This ensures you have the financial capacity to manage repayments comfortably.

", ], [ 'q' => 'What documents are required for salaried individuals?', 'a' => '

As a salaried applicant, you’ll need to provide:

These documents help us verify your identity, residence, and financial stability.

', ], [ 'q' => 'What is the maximum loan amount I can avail?', 'a' => "

Eligible salaried individuals can apply for loans ranging from {$fmt( $minAmount, )} to {$fmt( $maxAmount, )}. The exact amount approved depends on your income, credit history, and existing obligations.

", ], [ 'q' => 'What CIBIL score is required for loan approval?', 'a' => '

A CIBIL score of 700 or above is generally preferred. However, we also consider applications with lower scores by evaluating other aspects of your financial profile.

', ], [ 'q' => 'How quickly can I receive the loan amount?', 'a' => '

Once your application is approved and documentation is verified, the loan amount is typically disbursed to your bank account within 24 to 48 hours.

', ], [ 'q' => 'How do I apply for a loan?', 'a' => '
  1. Online Application: Visit our website and fill out the application form with your personal and financial details.
  2. Document Submission: Upload the required documents for verification.
  3. Approval & Disbursal: Upon successful verification, you’ll receive the loan agreement. Once accepted, funds are transferred to your bank.
', ], [ 'q' => 'Is physical verification required for loan approval?', 'a' => '

Our process is largely digital. In certain cases, a brief in-person verification may be required to ensure all details are accurate.

', ], [ 'q' => 'Can I apply for another loan if I already have an existing one?', 'a' => '

Yes. Approval depends on your current income, existing loan repayments, and overall creditworthiness.

', ], [ 'q' => 'What happens if I cannot repay the loan on time?', 'a' => '

Missing a payment may result in late fees and can negatively impact your credit score. If you’re facing difficulties, contact our support team promptly to discuss possible solutions.

', ], [ 'q' => 'Are there any prepayment charges if I decide to repay my loan early?', 'a' => '

We offer flexibility to prepay without additional charges. Early repayment can help you save on interest costs.

', ], [ 'q' => 'What is the tenure range for personal loans?', 'a' => "

Our personal loans offer flexible repayment tenures ranging from {$tenureMin} to {$tenureMax} months, so you can choose a plan that fits your finances.

", ], [ 'q' => 'How is the interest rate determined?', 'a' => '

Rates depend on your credit score, income, loan amount, and tenure. A higher credit score and stable income generally secure more favorable rates.

', ], ]; @endphp
@foreach ($faqs as $i => $item) @php $n = $i + 1; $collapseId = "collapse-{$n}"; $headingId = "heading-{$n}"; @endphp

{!! $item['a'] !!}
@endforeach
@endsection