@include('tenant_layouts.header')
@include('tenant_layouts.navbar')
@include('tenant_layouts.topbar')
@if(session()->has('message')) @endif
@csrf
{{--Save--}}
{{$tenant->unique_id}}
{{$tenant->username}}
{{$tenant->first_name}}
{{$tenant->last_name}}
{{$tenant->address}}
{{$tenant->property_unit}}
{{$tenant->city}}
{{$tenant->state}}
{{$tenant->zipcode}}
@error('phone') {{ $message }} @enderror
{{date('m/d/Y',strtotime($tenant->created_at))}}
{{date('m/d/Y',strtotime($tenant->lease_start_date))}}
{{date('m/d/Y',strtotime($tenant->lease_end_date))}}
{{date('m/d/Y',strtotime($tenant->next_payment_due_date))}}
${{number_format($tenant->rental_amount,2)}}
Current
@if($tenant->late_fee_owed) {{$tenant->late_fee_owed}} @else 0.00 @endif
{{$tenant->rental_status}}
{{$tenant->lease_type}}
@error('lease_type') {{ $message }} @enderror
${{number_format($tenant->balance, 2)}}
@if($tenant->image) @else @endif
Cancel
@include('tenant_layouts.footer')
@include('tenant_layouts.script')