$this->template->title = "Users"; $this->template->content = View::factory('users/create') ->set('countries', Helper::countries(),false);
$this->template->content = View::factory('users/create')->set('countries', Helper::countries(),false);Here you request the view "users/create", but that doesn't match the error:
ErrorException [ 4096 ]: Argument 3 passed to Fuel\Core\Form::select() must be an array, null given, called in c:\\fuel\app\views\users\_form.php on line 68 and definedThat talks about the view "users/_form". As the error and the requested view don't match it looks like this isn't the full picture yet...
$this->template->content = View::factory('users/create') ->set('var','xxxxxxx',FALSE);
It looks like you're new here. If you want to get involved, click one of these buttons!