@extends('admin.layout') @section('content')
{{ __('Edit Section') }}
{{ __('Back') }}
    @csrf

    {{ __('The higher the serial number is, the later the section will be shown') . '.' }}

    @foreach ($languages as $language)
    @php $content = App\Models\HomePage\AdditionalSectionContent::where( 'addition_section_id', $section->id, ) ->where('language_id', $language->id) ->first(); @endphp
    @php $currLang = $language; @endphp @foreach ($languages as $language) @continue($language->id == $currLang->id)
    @endforeach
    @endforeach
    @endsection