<x-radio.group label="Select your payment method"> <x-radio wire:model="payment" value="cc" label="Credit Card" /> <x-radio wire:model="payment" value="paypal" label="Paypal" /> <x-radio wire:model="payment" value="ach" label="Bank transfer" /></x-radio.group>
Administrator users can perform any action.
Editor users have the ability to read, create, and update.
Viewer users only have the ability to read. Create, and update are restricted.
<x-radio.group label="Role"> <x-radio name="role" value="administrator" label="Administrator" description="Administrator users can perform any action." checked /> <x-radio name="role" value="editor" label="Editor" description="Editor users have the ability to read, create, and update." /> <x-radio name="role" value="viewer" label="Viewer" description="Viewer users only have the ability to read. Create, and update are restricted." /></x-radio.group>
Administrator users can perform any action.
Editor users have the ability to read, create, and update.
Viewer users only have the ability to read. Create, and update are restricted.
<x-fieldset> <x-legend>Role</x-legend> <x-radio.group> <x-radio value="administrator" label="Administrator" description="Administrator users can perform any action." disabled /> <x-radio value="editor" label="Editor" description="Editor users have the ability to read, create, and update." badge="New" badge-color="lime" /> <x-radio value="viewer" label="Viewer" checked description="Viewer users only have the ability to read. Create, and update are restricted." /> </x-radio.group></x-fieldset>