@extends('contentNavbarLayout') @section('title', 'Assign Properties') @section('content')
{{-- Flash Message --}} @if(session('success')) @endif {{-- Global Error List --}} @if ($errors->any()) @endif
Step 2: Assign Properties for {{ $recordType->name }}
@csrf
@foreach($properties as $property) @endforeach
Property Name Description Data Type Required
{{ $property->name }} {{ $property->description }} {{ $property->data_type }}
{{-- Select All Script --}} @endsection