@include('tenant_layouts.header')
@include('tenant_layouts.navbar')
@include('tenant_layouts.topbar')
Dashboard
/
@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@csrf
{{--
Save
--}}
Account number
{{$tenant->unique_id}}
User Name
{{$tenant->username}}
First name
{{$tenant->first_name}}
Last name
{{$tenant->last_name}}
Address
{{$tenant->address}}
Unit Number
{{$tenant->property_unit}}
City
{{$tenant->city}}
State
{{$tenant->state}}
Zip
{{$tenant->zipcode}}
Phone
@error('phone')
{{ $message }}
@enderror
Email
Created Date
{{date('m/d/Y',strtotime($tenant->created_at))}}
Lease Start Date
{{date('m/d/Y',strtotime($tenant->lease_start_date))}}
Lease End Date
{{date('m/d/Y',strtotime($tenant->lease_end_date))}}
Next Payment Due Date
{{date('m/d/Y',strtotime($tenant->next_payment_due_date))}}
Rent Amount
${{number_format($tenant->rental_amount,2)}}
Account Status
Current
Late Fee Owed
@if($tenant->late_fee_owed) {{$tenant->late_fee_owed}} @else 0.00 @endif
Rental Status
{{$tenant->rental_status}}
Lease Type
{{$tenant->lease_type}}
@error('lease_type')
{{ $message }}
@enderror
Total Amount Due
${{number_format($tenant->balance, 2)}}
@if($tenant->image)
@else
@endif
Cancel
Save
@include('tenant_layouts.footer')
@include('tenant_layouts.script')