@extends('admin.layouts.layout')
@section('title', 'Create Customer/Agent Type')
@section('content')
Create New Customer/Agent Type
@include('admin.customer-agent-type._form', [
'mode' => 'create',
'record' => new \App\Models\CustomerAgentType,
'options' => $options,
'tenant_list' => $tenant_list ?? [],
'user_types' => $user_types,
'current_tenant_id' => $current_tenant_id ?? null
])
@endsection