예제 #1
0
?>
	
	    <?php 
echo $form->field($model, 'direccion')->textInput(['maxlength' => true]);
?>
	
	    <?php 
echo $form->field($model, 'numero_oficina')->textInput(['maxlength' => true]);
?>
	
	    <?php 
echo $form->field($model, 'ciudad')->textInput(['maxlength' => true]);
?>
	
    	<?php 
echo $form->field($model, 'id_provincia')->dropdownList(Provincias::findAllForDropDownList(), ['prompt' => '--- Otras ---']);
?>
	    
	    <?php 
echo $form->field($model, 'provincia')->textInput(['maxlength' => true]);
?>
	    
    	<?php 
echo $form->field($model, 'id_pais')->dropdownList(Paises::findAllForDropDownList(), ['prompt' => '--- Select Status ---']);
?>
	
	    <?php 
echo $form->field($model, 'codigo_postal')->textInput(['maxlength' => true]);
?>
	
	    <?php