@extends('layouts.app') @section('title', 'Create Loan') @section('page-title', 'Create Loan') @section('content')
Create New Loan
@csrf
@error('customer_id')
{{ $message }}
@enderror
@error('scheme_id')
{{ $message }}
@enderror
@error('principal_amount')
{{ $message }}
@enderror
@error('duration_type')
{{ $message }}
@enderror
@error('duration_value')
{{ $message }}
@enderror
Note: If duration is not specified, the scheme's default duration will be used. Processing fee, insurance fee, and other fees from the scheme will be automatically added to the loan total.
@error('disbursement_date')
{{ $message }}
@enderror
Cancel
@endsection