@php use App\Enums\WorkFlow\ActionType; $selectedChildrenIds = collect(old('children', $flow->children ?? [])) ->map(fn ($id) => (string) $id); $selectedActionType = old('action_type', $flow->action_type); @endphp @extends('components.dashboard.layout.layout') @section('content') @include('components.alert')
Loading...
Preparing workflow form...
Back to Workflows
@csrf @method('PUT') @if ($errors->any())
Please review the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Current Workflow

Review the current workflow configuration, then update its name, order, children, or action type as needed.

Workflow Name
{{ str($flow->name)->replace('_', ' ')->lower()->ucfirst() }}
Current Sort
{{ $flow->sort ?? '—' }}
Action Type
{{ $flow->action_type ? str($flow->action_type)->replace('_', ' ')->lower()->ucfirst() : '—' }}
Basic Information

Update the workflow name and sorting position used in the CRM automation sequence.

Name *
Sort *
Workflow Relations

Select child workflows and define the action type connected to this workflow.

Cancel
@endsection @push('scripts') @endpush