@extends('layouts.admin') @section('style') @parent @endsection @section('content')

Interactive Flows

Build interactive forms & screens for {{ $channel->name ?? 'this channel' }}
@csrf
@if(session('error'))
{{ session('error') }}
@endif @if($flows->isEmpty())
No flows yet
Create your first Interactive Flow to collect responses, run surveys, or sign people up.
@csrf
@else
Flow Type Status
@foreach($flows as $flow)
{{ $flow->name }}
Flow #{{ $flow->id }}
@if($flow->is_onboarding) Onboarding @else Standard @endif
{{ $flow->status }}
Edit
@endforeach
@endif
@endsection