How to pass form variables on all pages laravel helpers

PHP
public static function country() {
    $countries = Countries::orderby('name_zh','asc')
                            ->pluck('name', 'id');
    return Form::select('countries', $countries);
}
{{ Address::country() }}

Source

Also in PHP: