{{ ($type == 'EDIT') ? 'Edit Tour' : 'Create a New Tour' }}
@csrf
Add Step

Note: Please always select the first step element from side menu to start the tour from anywhere in the application.

@if(isset($tour->tourSteps)) @foreach($tour->tourSteps as $tourStep)
Step {{ $loop->iteration }}
@if($loop->iteration != 1) @endif
{!! $tourStep->content !!}
@endforeach @else
Step 1
@endif