@extends('layouts.app') @section('content')
@include('common.errors')
{{ csrf_field() }}
  Informazioni personali:
@if ( !($from == "newProprietario") )
@endif
@if ( !($from == "newProprietario") )
  Contatti:
@endif
  Conto:
%
@if ( $owner->o_cleaning_refound == "1" ) @else @endif
@if ( $from == "newProprietario" )
@elseif ( $from == "newOwner" ) @endif
@if ( $from == "newOwner" || $from == "newProprietario" )
@elseif ( $from == "viewOwner" )
@endif @if ( $from == "viewOwner" ) @endif


@if (count($owners) > 0) @foreach ($owners as $proprietario)

Proprietario n. 1

{{ csrf_field() }}
  Informazioni personali:
  Conto:


@if ( $from == "newOwner" || $from == "newProprietario" ) @elseif ( $from == "viewOwner" ) @endif

@endforeach @endif @if ( $from == "viewOwner" ) @if (count($houses) > 0)
@foreach ($houses as $house) @endforeach
Dettaglio Proprietà Proprietario
VIEW {{ $house->h_title }} {{ $house->o_name }} {{ $house->o_surname }}

@endif @endif
@endsection