@extends('layouts.dashboard') @section('title', 'Create Rental Agreement') @section('header', 'Create New Rental Agreement') @section('sidebar') @include('company-admin.partials.sidebar') @endsection @section('content')
Back to Contracts
@csrf
@error('contract_type')

{{ $message }}

@enderror
@error('property_id')

{{ $message }}

@enderror
@error('customer_id')

{{ $message }}

@enderror
@error('total_amount')

{{ $message }}

@enderror
@error('currency')

{{ $message }}

@enderror
@error('payment_type')

{{ $message }}

@enderror
@error('start_date')

{{ $message }}

@enderror
@error('end_date')

{{ $message }}

@enderror
@error('terms')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror
Cancel

Contract Guidelines

  • All fields marked with * are required
  • End date must be after start date
  • Contract will be created in Draft status
  • Activate contract when ready to sign
@if($booking)

From Booking

Booking ID: {{ $booking->booking_number }}
Property: {{ $booking->property->title ?? 'N/A' }}
Tenant: {{ $booking->tenant->name ?? 'N/A' }}
Check-in: {{ \Carbon\Carbon::parse($booking->check_in_date)->format('M d, Y') }}
@endif
@endsection @push('scripts') @endpush