@extends('layouts.survey') @section('title', 'Select Respondent — ' . $project->name) @section('trail')
1 Select Respondent
2 Select Language
3 Survey Questions
4 Collector Info
5 Thank You
@endsection @push('styles') @endpush @section('content') {{-- Project Hero --}}

{{ $project->name }}

{{ $project->tagline }}

@foreach(array_slice($project->target_audience ?? [], 0, 5) as $aud) {{ $aud }} @endforeach
{{-- Respondent Selection --}}
1

Who are you collecting feedback from?

Select the type of respondent you are speaking with right now.

@php $icons = [ 'parent' => 'fa-user-group', 'teacher' => 'fa-chalkboard-user', 'student' => 'fa-graduation-cap', 'school_authority' => 'fa-school', 'merchant' => 'fa-store', 'sme_owner' => 'fa-briefcase', 'online_seller' => 'fa-cart-shopping', 'ssl_merchant' => 'fa-shield-halved', 'smartphone_buyer' => 'fa-mobile-screen', 'retail_shop' => 'fa-shop', 'consumer_kk' => 'fa-user', 'employee' => 'fa-id-badge', 'staff' => 'fa-users', 'factory_worker' => 'fa-industry', 'restaurant_visitor'=> 'fa-utensils', 'cafe_customer' => 'fa-mug-hot', 'consumer_treats' => 'fa-user', 'general_public' => 'fa-earth-asia', ]; @endphp @foreach($respondentTypes as $rt)
{{ $rt->name }}
@if($rt->name_bn)
{{ $rt->name_bn }}
@endif
@endforeach
Back to Projects
@endsection