@extends('backend.master') @section('title') {{ @$title }} @endsection @section('content')
{{ Auth::user()->name }}

{{ _trans('common.robert_downey') }}

{{ _trans('common.ui_ux_designer') }}

@include('bilnetpropertyownerform::preview_steps.profile_menu')

{{ _trans('Building Permit Details') }}

{{ _trans('common.Land Title Number') }}

{{ $data['land_title_number'] ?? 'N/A' }}

{{ _trans('common.Building Permit Images') }}

@if (!empty($data['building_permit_images']))
@foreach (json_decode($data['building_permit_images'], true) as $image)
Building Permit Image
@endforeach
@else

{{ _trans('common.No Images Available') }}

@endif

{{ _trans('common.Building Permit Status') }}

{{ $data['building_permit_status'] ?? 'N/A' }}

{{ _trans('common.Payment Code for Permit') }}

{{ $data['payment_code_for_permit'] ?? 'N/A' }}

@php $permitIndex = 1; @endphp @while (isset($data["permit_name_{$permitIndex}"]))

{{ _trans('common.Permit Details') }} #{{ $permitIndex }}

{{ _trans('common.Name') }}: {{ $data["permit_name_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Issuer') }}: {{ $data["permit_issuer_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Region') }}: {{ $data["permit_region_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.District') }}: {{ $data["permit_district_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Purpose') }}: {{ $data["permit_purpose_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Issuing Date') }}: {{ $data["permit_issuing_date_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Expiry Date') }}: {{ $data["permit_expiry_date_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Cost') }}: {{ $data["permit_cost_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Payment Code') }}: {{ $data["payment_code_for_permit_{$permitIndex}"] ?? 'N/A' }}

{{ _trans('common.Issuing Officer') }}: {{ $data["permit_issuing_officer_{$permitIndex}"] ?? 'N/A' }}

@php $permitIndex++; @endphp @endwhile
@endsection