Reuse resource form in another livewire component

Hi I want to know is it possible to reuse a resource form

public function form(Form $form): Form
    {
        return OrganisationResource::form($form)
            ->statePath('data')
            ->getClone()
            ->model(Organisation::class);
    }

I have this form on livewire component and all is showing fine but when i save the selects is not saving here is dd of data

array:10 [▼ // app/Livewire/Organisation/Register.php:35
  "logo" => "LUfEL9i1C2tIr9wIAmkMESQFqoTxgX-metabG9nby5wbmc=-.png"
  "name" => "York Stanley Inc"
  "district_id" => null
  "contact_person" => "Graham Cote Traders"
  "contact_number" => "Guzman Rosario Co"
  "email" => "rufofo@mailinator.com"
  "website" => "https://www.gigazoqug.mobi"
  "councilors" => null
  "votes" => null
  "status" => "pending"
]

All selects are null for some reason

Also I have dependant select based on another select but this is also not working here but does work on original form

Any ideas? Is this possible?
Was this page helpful?