@extends('layouts.app') @section('title', 'Request a Nabola Machine') @push('styles') @endpush @section('content')
@if($errors->any())
{{ $errors->first() }}
@endif {{-- Progress --}}
@foreach(['Request Type','Your Details','Location','Agreement'] as $i=>$label)
{{ $i+1 }}
{{ $label }}
@endforeach
@csrf {{-- ── STEP 1: Request Type ── --}}
What type of machine request is this?
@foreach([ ['residential','🏠','Home Request','For your personal home or apartment. You are the head of household.'], ['estate','🏘️','Estate / Compound','For a shared compound, estate, or gated community.'], ['commercial','🏢','Street / Community','For a public street, market, or community area.'], ['school','🎓','School / Institution','For a school, university, or educational institution.'], ['office','💼','Office / Workplace','For an office building or workplace.'], ] as [$val,$icon,$title,$desc]) @endforeach
{{-- Conditional questions based on type --}}
{{-- ── STEP 2: Your Details ── --}}
Your contact information
Why do you want a Nabola machine?
{{-- ── STEP 3: Location ── --}}
Where should the machine be installed?
Max 5MB · PDF, JPG, PNG
{{-- ── STEP 4: Agreement ── --}}
Review & Sign Agreement
Nabola Machine Placement Agreement
  • I authorize Nabola to install and maintain a recycling machine at my stated address
  • I will ensure the machine is accessible to household/community members
  • I will report any damage, theft, or issues to Nabola promptly
  • I will not relocate or tamper with the machine without Nabola's written consent
  • I understand that installation may be free or subject to a fee set by Nabola admin
  • I confirm that all information provided in this form is accurate and truthful
  • I agree to Nabola's Terms of Service and Privacy Policy
{{-- Summary --}}
📋 Request Summary
@push('scripts') @endpush @endsection