<?php
$Get 
= [
    
"type" => "radio",
    
"label" => "First name",
    
"name" => "firstname",
    
"options" => [
        [
"value" => "option1""label" => "Option 1"],
        [
"value" => "option2""label" => "Option 2"],
        [
"value" => "option3""label" => "Option 3"],
    ],
];
  
\template\widget('form_field'$Get);
?>