Livewire select tag is rendering null

put like this in your blade and see if get value in change:

<select class="form-control" wire:model=geting>
       <option value=""> select category </option>
      @foreach
            .......
      @endforeach
</select>
{{ $geting }}

Not working i think it is a bug

Did your form has the “action” method where is calling the method “create()”?

Something like this:

<form wire:submit.prevent="create" >

yes this is the method it render null value while it is working for other input text

could you see in browser console for any issue?