@extends('layouts.app')
@section('title', __('radio.wizard.title') . ' - ' . __('radio.wizard.step_short') . ' 5 - ' . config('app.name'))
@push('styles')
@endpush
@section('content')
โ {{ __('radio.wizard.step1_label') }}
โ {{ __('radio.wizard.step2_label') }}
โ {{ __('radio.wizard.step3_label') }}
โ {{ __('radio.wizard.step4_label') }}
{{ __('radio.wizard.step5_label') }}
@if(session('error'))
{{ session('error') }}
@endif
๐ {{ __('radio.wizard.test_title') }}
{{ __('radio.wizard.test_desc') }}
{{ __('radio.wizard.test_loading') }}
@if($testResults)
@include('admin.radio.wizard._test-results', ['results' => $testResults])
@else
{{ __('radio.wizard.test_prompt') }}
@endif
๐ {{ __('radio.wizard.settings_overview') }}
{{ __('radio.wizard.settings_overview_desc') }}
@foreach($settingsList as $key => $value)
{{ $key }}
{{ $value }}
@endforeach
@endsection