@extends('client.layout.master') @php use App\Models\Translation; $locale = app()->getLocale(); @endphp @section('title', Translation::getValue('process_title', $locale)) @section('content')

{{ Translation::getValue('page_process_title', $locale) }}

@if($process)

{{ $process->getTranslation('title',$locale) }}

{{ $process->getTranslation('description',$locale) }}
@endif @if(!empty($steps) && count($steps)) @foreach($steps as $step) @if($step->layout === 'left-image')
@if($step->image)
@endif

{{ $step->getTranslation('title',$locale) }}

{{ $step->getTranslation('description',$locale) }}

@if($step->getTranslation('button_text',$locale)) {{ $step->getTranslation('button_text',$locale) }} @endif
STEP {{ $step->step_number }}
@else

{{ $step->getTranslation('title',$locale) }}

{{ $step->getTranslation('description',$locale) }}

@if($step->getTranslation('button_text',$locale)) {{ $step->getTranslation('button_text',$locale) }} @endif
@if($step->image)
@endif
STEP {{ $step->step_number }}
@endif @endforeach @endif @include('components.callback') @endsection