@extends('layouts.survey') @section('title', 'Who Are You? — ' . $project->name) @section('trail')
1 Who Are You?
2 Language
3 Questions
4 Thank You
@endsection @push('styles') @endpush @section('content')

{{ $project->name }}

{{ $project->tagline }}

1

Who are you?

Select the category that best describes you.

@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 Project
@endsection