How to use custom form multi select template in cakephp 3?

Here my code:

$this->Form->setTemplates([
‘inputContainer’ => ‘{{content}}’,
‘input’ => ‘<input type=“{{type}}” style=“width: 515px;” name=“{{name}}”{{attrs}}/>’,
‘label’ => ‘<label{{attrs}}>{{input}}{{text}}:’,
‘select’ => ‘<select style=“width: 515px;” name=“{{name}}”{{attrs}}>{{content}}’,
‘textarea’ => ‘<textarea style=“width: 515px;” value=“{{value}}”{{attrs}}>{{text}}’
]);

Here I am using multi select the design is not working properly. In multi select cakephp generate two input tags input and select next next tag. First input tag is working fine in it placed define

tag but is not placed in that tag.

Please give advice multi select custom template in cakephp 3.

Thanks advance.