@extends('layouts.app') @section('title', 'Signup Form') @section('page-title', 'Signup Form Options') @section('breadcrumb', 'Platform Admin / Signup Form') @section('content')

Manage the multiple-choice options shown during educator signup (business type, what they teach, goals, and more).

@foreach($questions as $question)

{{ $question['label'] }}

{{ $question['description'] }}

{{ $question['is_customized'] ? 'Custom' : 'Default' }}
{{ $question['option_count'] }} active options @if($question['updated_at']) Updated {{ $question['updated_at']->diffForHumans() }} @else Using defaults @endif
@endforeach
@endsection