diff options
| -rw-r--r-- | src/lib/auth/components/CompanyProfile.jsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/auth/components/CompanyProfile.jsx b/src/lib/auth/components/CompanyProfile.jsx index 606f56ea..7bda992f 100644 --- a/src/lib/auth/components/CompanyProfile.jsx +++ b/src/lib/auth/components/CompanyProfile.jsx @@ -157,6 +157,9 @@ const CompanyProfile = () => { <HookFormSelect {...props} options={industries} /> )} /> + <div className='text-caption-2 text-danger-500 mt-1'> + {errors.industry?.message} + </div> </div> <div className='flex flex-wrap'> <div className='w-full mb-3'>Badan Usaha</div> @@ -168,6 +171,9 @@ const CompanyProfile = () => { <HookFormSelect {...props} options={companyTypes} /> )} /> + <div className='text-caption-2 text-danger-500 mt-1'> + {errors.companyType?.message} + </div> </div> <div className='w-9/12 pl-1'> <input |
