@extends('layouts.agent') @section('content')
@if ($data->type == 'for_rent')
{{ __('Contract Details') }} {{ __('Back') }}
@else
{{ __('Contract Details') }} {{ __('Back') }}
@endif
@include('includes.admin.form-success')
@if ($data->rent_type == 'visit') @include('partials.agent.property.visit') @endif @if ($data->type == 'for_buy' || $data->rent_type == 'immediately') @include('partials.agent.property.immediately') @endif

{{__('Required Information')}}

@foreach ($requiredInformations as $key=>$value) @if ($value[1] == 'file') @else @endif @endforeach @if ($data->type == 'for_buy' || $data->rent_type == 'immediately') @if ($data->phase == 3 || $data->phase == 4) @endif @endif
{{$key}} :
{{$key}} : {{ $value[0] }}
@lang('Contract Paper') : {{ $data->contract_paper }}

{{__('Client Information')}}

@if ($user->photo != NULL) @endif
@lang('Name') : {{ $user->name }}
@lang('Email') : {{ $user->email }}
{{$key}} :
@lang('Phone') : {{ $user->phone }}
@lang('Zip') : {{ $user->zip }}
@lang('City') : {{ $user->city }}
@lang('Address') : {{ $user->address }}

{{__('Buy/Rent Details')}}

@if ($data->type == 'for_rent') @endif
{{__('Transaction No')}} : {{$data->transaction_no}}
{{__('Property Name')}} : {{ $property['name'] }}
{{__('User')}} : {{$data->user->name}}
{{__('Amount')}} : {{ showSignAmount($data->amount) }}
{{__('Guarantee Amount')}} : {{ showSignAmount($data->guarantee_amount) }}
{{__('Next Rent Given Time')}} : {{ $data->next_rent_time->format('m-d-y') }}
{{-- STATUS MODAL --}} {{-- STATUS MODAL ENDS --}} @endsection