@extends('layouts.main') @section('title') {{ __('Ver Documentos') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content') {!! Form::open([ 'route' => ['collections.update', $collection->id], 'method' => 'PATCH', 'data-parsley-validate', 'files' => true, 'id' => 'myForm', ]) !!}

Datos de Cliente

{{ Form::label('date', __('Nombre y Apellido'), ['class' => 'form-label col-12 ']) }} {{ Form::text('date', isset($customer->name) ? $customer->name : '', ['class' => 'form-control', 'readonly' => 'true']) }}
{{ Form::label('status', __('Email'), ['class' => 'form-label col-12 ']) }} {{ Form::text('status', isset($customer->email) ? $customer->email : '', ['class' => 'form-control', 'placeholder' => 'Nombre', 'required' => true, 'id' => 'name', 'step' => 'any', 'readonly' => 'true']) }}
{{ Form::label('source_income', __('Nùmero de Telefono'), ['class' => 'form-label col-12 ']) }} {{ Form::text('source_income', isset($customer->mobile) ? $customer->mobile : '', ['class' => 'form-control', 'placeholder' => 'Nombre', 'required' => true, 'id' => 'phone', 'step' => 'any', 'readonly' => 'true']) }}

Datos de Propiedad

{{ Form::label('date', __('Propiedad'), ['class' => 'form-label col-12 ']) }} {{ Form::text('date', isset($property->title) ? $property->title : '', ['class' => 'form-control', 'readonly' => 'true']) }}
{{ Form::label('status', __('Direccion'), ['class' => 'form-label col-12 ']) }} {{ Form::text('status', isset($property->address) ? $property->address : '', ['class' => 'form-control', 'placeholder' => 'Nombre', 'required' => true, 'id' => 'name', 'step' => 'any', 'readonly' => 'true']) }}
{{ Form::label('source_income', __('Precio'), ['class' => 'form-label col-12 ']) }} {{ Form::text('source_income', isset($property->price) ? $property->price : '', ['class' => 'form-control', 'placeholder' => 'Nombre', 'required' => true, 'id' => 'name', 'step' => 'any', 'readonly' => 'true']) }}

Aprobacion


Visita


@if(isset($contract->id ))

Contrato


@endif

Documentos para verificar

{{ Form::label('collection1', __('Cédula de identidad'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection1', 1, $collection->identity_card == 1 ? true : false, ['class' => 'form-check-input']) }}
{{ Form::label('collection2', __('Rif'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection2', 1, $collection->rif == 1 ? true : false, ['class' => 'form-check-input']) }}
{{ Form::label('collection3', __('Referencia de trabajo'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection3', 1, $collection->work_reference == 1 ? true : false, ['class' => 'form-check-input']) }}
{{ Form::label('collection4', __('Referencia bancaria'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection4', 1, $collection->bank_reference == 1 ? true : false, ['class' => 'form-check-input']) }}
{{ Form::label('collection5', __('Referencia personal 1'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection5', 1, $collection->personal_reference_1 == 1 ? true : false, ['class' => 'form-check-input']) }}
{{ Form::label('collection6', __('Referencia personal 2'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection6', 1, $collection->personal_reference_2 == 1 ? true : false, ['class' => 'form-check-input']) }}
{{ Form::label('collection7', __('Partida de nacimiento'), ['class' => 'form-label col-12']) }} {{ Form::checkbox('collection7', 1, $collection->birth_certificate == 1 ? true : false, ['class' => 'form-check-input']) }}

   
@if( ($collection->identity_card == 1 and $collection->rif == 1 and $collection->work_reference == 1 and $collection->bank_reference == 1 and $collection->personal_reference_1 == 1 and $collection->personal_reference_2 == 1 and $collection->birth_certificate == 1) and $contract == null )
@endif
{!! Form::close() !!}
@endsection @section('script') @endsection