/**
  * Creates a new Usuarios model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Usuarios();
     if ($model->load(Yii::$app->request->post())) {
         if ($model->validate()) {
             $model->save();
             return $this->redirect(['view', 'id' => $model->cedula]);
         } else {
             return $this->render('create', ['model' => $model]);
         }
     }
     return $this->render('create', ['model' => $model]);
 }