In your controller, get the tables and pass to the form
$genders = Gender::all();
return view('registration')->withGenders($genders);
The in the form
<select name="gender">
<option>Select Gender</option>
@foreach($genders as $gender)
<option value="{{$gender->id}}">{{$gender->name}}</option>
@endforeach
</select>