1<select name="category" class="form-control">
2 @foreach($categories as $category)
3 <option value="{{ $category->id }}" <?php if($hotel->category_id == $category->id) { echo "selected";}?>>{{ $category->name }}</option>
4 @endforeach
5</select>
6