{{-- resources/views/documents/lease-agreement.blade.php --}} Lease Agreement

{{ $company['name'] }}

{{ $company['address'] }}

Phone: {{ $company['phone'] }} | Email: {{ $company['email'] }}

RESIDENTIAL LEASE AGREEMENT
LEASE INFORMATION
Tenant Name: {{ $tenant->full_name }}
Email: {{ $tenant->email ?? 'N/A' }}
Phone: {{ $tenant->phone ?? 'N/A' }}
Address: {{ $tenant->address ?? 'N/A' }}
Lease Start: {{ \Carbon\Carbon::parse($lease->start_month)->format('F d, Y') }}
Lease End: {{ \Carbon\Carbon::parse($lease->end_month)->format('F d, Y') }}
Duration: {{ $lease->lease_duration }} months
Status: {{ ucfirst($lease->status) }}
FINANCIAL TERMS
Monthly Rent: UGX {{ number_format($lease->monthly_rent) }}
Security Deposit: UGX {{ number_format($lease->security_deposit ?? 0) }}
Next Payment Date: {{ $lease->next_payment_date ? \Carbon\Carbon::parse($lease->next_payment_date)->format('F d, Y') : 'N/A' }}
Auto Renew: {{ $lease->auto_renew ? 'Yes' : 'No' }}
TERMS AND CONDITIONS

1. PAYMENT TERMS: Rent is due on the first day of each month. Late payments may incur additional fees as per company policy.

2. SECURITY DEPOSIT: A security deposit of UGX {{ number_format($lease->security_deposit ?? 0) }} is required and will be returned at the end of the lease term, subject to property condition and outstanding obligations.

3. PROPERTY CONDITION: The tenant agrees to maintain the property in good condition and report any damages promptly.

4. LEASE DURATION: This lease is for {{ $lease->lease_duration }} months, from {{ \Carbon\Carbon::parse($lease->start_month)->format('F d, Y') }} to {{ \Carbon\Carbon::parse($lease->end_month)->format('F d, Y') }}.

5. TERMINATION: Either party may terminate this lease with 30 days written notice, subject to the terms and conditions outlined in this agreement.

6. GOVERNING LAW: This agreement shall be governed by the laws of Uganda.

Landlord/Agent

{{ $company['name'] }}

Date: {{ $generated_date }}

Tenant

{{ $tenant->full_name }}

Date: _________________