@extends('design_1.web.layouts.app') @push('styles_top') @endpush @section('content')

{{ trans('update.instructor_finder') }}

{{ trans('update.find_instructors_with_different_parameters_in_the_easiest_way') }}

@if(!empty(request()->all()) and count(request()->all())) @foreach(request()->all() as $param => $value) @if($param !== 'step') @endif @endforeach @endif
@include('design_1.web.instructor_finder.wizard.step_'.$step)
@if(($step != 1)) @endif
@php $mainImage = null; $overlayImage = null; if (!empty($instructorFinderSettings) and !empty($instructorFinderSettings["main_image_step_{$step}"])) { $mainImage = $instructorFinderSettings["main_image_step_{$step}"]; } if (!empty($instructorFinderSettings) and !empty($instructorFinderSettings["overlay_image_step_{$step}"])) { $overlayImage = $instructorFinderSettings["overlay_image_step_{$step}"]; } @endphp
@if(!empty($mainImage)) {{ trans('update.main_image') }} @endif @if(!empty($overlayImage))
{{ trans('update.overlay_image') }}
@endif
@endsection @push('scripts_bottom') @endpush