@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('Yellow Card Details (Optional)') }}

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

{{ @$data['landTitleNumber'] ?? 'N/A' }}

{{ _trans('common.Yellow Card Images') }}

@if (!empty(@$data['yellow_card_images']))
@foreach (json_decode(@$data['yellow_card_images'], true) as $image)
Yellow Card Image
@endforeach
@else

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

@endif

{{ _trans('common.Yellow Card Status') }}

{{ @$data['yello_card_status'] ?? 'N/A' }}

{{ _trans('common.Yellow Card Date') }}

{{ @$data['yellow_card_date'] ?? 'N/A' }}

{{ _trans('common.Yellow Card Time') }}

{{ @$data['yello_card_time'] ?? 'N/A' }}

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

{{ @$data['paymentCode'] ?? 'N/A' }}

@endsection