@extends('layouts.dashboard') @section('title', __('messages.create') . ' ' . __('messages.leases')) @section('header', 'Create New Lease Agreement') @section('sidebar') @include('company-admin.partials.sidebar') @endsection @section('content')

Create New Lease Agreement

Set up a new lease agreement between a property and tenant

@csrf

Property & Tenant Selection

@if($properties->count() === 0)

You need to create at least one property before creating a lease. Create Property

@endif @error('property_id')

{{ $message }}

@enderror
@if($tenants->count() === 0)

You need to register at least one tenant before creating a lease. Register Tenant

@endif @error('tenant_id')

{{ $message }}

@enderror

Lease Duration

@error('start_date')

{{ $message }}

@enderror
@error('end_date')

{{ $message }}

@enderror

Financial Details

{{ $currency ?? 'TZS' }}

Monthly rental amount (will auto-fill from property price if available)

@error('monthly_rent')

{{ $message }}

@enderror
{{ $currency ?? 'TZS' }}

Refundable security deposit amount (if applicable)

@error('security_deposit')

{{ $message }}

@enderror

The day of each month when rent payment is due

@error('payment_day')

{{ $message }}

@enderror

Select "Active" for new lease agreements

@error('status')

{{ $message }}

@enderror

Terms & Additional Information

Specify payment schedules, maintenance responsibilities, property usage rules, renewal options, and any other lease conditions

@error('terms')

{{ $message }}

@enderror

Internal notes for company administrators only - useful for tracking tenant history, property details, and important reminders

@error('notes')

{{ $message }}

@enderror
Cancel
@endsection