...

Become a Chauffeur Partner!

Requirements

To ensure quality standards and safety, the requirements for chauffeurs and vehicles are as follows:

Licensing 

  • Valid Private Hire Badge
  • Valid Driving License 

Vehicle 

  • Vehicle License
  • Vehicle Insurance
  • MOT
  • Logbook
  • Condition & Cleanliness: Vehicle must be maintained in excellent condition, free from damage, and smoke-free.
  • Regulatory Compliance: Vehicle should comply fully with local safety and transportation regulations.
  • Age Limit: Vehicle should not be older than 5 years to ensure modern safety features and a quality experience.
// Select all file inputs with the class 'elementor-upload-field' const fileInputs = document.querySelectorAll(".elementor-upload-field"); fileInputs.forEach(fileInput => { fileInput.addEventListener("change", function() { if (fileInput.files.length > 0) { // Display a success message in the input's title attribute fileInput.setAttribute("title", "Document Uploaded Successfully!"); } else { // Clear the message if no file is selected fileInput.setAttribute("title", ""); } }); });