<!-- Pickup Location -->
<div>
  <label class="block text-sm font-medium text-gray-700 mb-1">Pickup Location</label>
  <div class="relative">
    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none" style="height: 46px; margin-left: 15px;">
      <i class="fas fa-map-marker-alt text-gray-400"></i>
    </div>
    <input style="padding-left: 35px;" type="text" id="trip_from_loc" name="trip_from_loc" value="<%= trip.trip_from_loc %>" class="block w-full pl-14 pr-3 py-2 border h-12 border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm" <%=   trip.trip_status !== "request" ? 'disabled' : '' %>>
  </div>
</div>
