@extends('central.super.layout') @section('title', __('super.how_it_works.title')) @section('content') {{-- Section config --}}

{{ __('super.how_it_works.section_header') }}

@csrf
{{-- Step items --}}

{{ __('super.how_it_works.items') }}

@forelse($steps as $step) @empty @endforelse
# {{ __('super.how_it_works.field_title') }} {{ __('super.how_it_works.field_icon') }} {{ __('super.how_it_works.field_color') }} {{ __('super.common.status') }} {{ __('super.common.actions') }}
{{ $step->sort_order }} {{ $step->title }} @if($step->icon) {{ $step->icon }} @else @endif {{ $step->icon_color ?? '—' }} {{ $step->is_active ? __('super.common.active') : __('super.common.inactive') }} {{ __('super.common.edit') }}
@csrf @method('DELETE')
{{ __('super.how_it_works.no_steps') }} {{ __('super.how_it_works.add_one') }}
@push('scripts') @endpush @endsection