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

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

    @foreach ($languages as $language) @php $content = App\Models\CustomSectionContent::where('language_id', $language->id) ->where('custom_section_id', $section->id) ->first(); @endphp
    @endforeach
    @endsection @section('script') @endsection