@extends('adminlte::page') @section('title', __('Web Contact')) @section('content_top_nav_right') @endsection @section('content_header') @stop @section('plugins.Flag', true) @section('plugins.IconPicker', true) @section('plugins.ColorPicker', true) @section('plugins.Pace', true) @section('plugins.Toastr', true) @section('plugins.Sweetalert2', true) @section('content')
@method('PATCH') @csrf
    @foreach (LocalizationHelper::getListFlags() as $language) @php $active = ($language->id == Auth::user()->language) ? 'active' : ''; @endphp
  • @endforeach
@php $data = json_decode(config('settings.contact_description'), true) @endphp @if ($data) @foreach($data as $lang => $txt) @php $hidden = (LocalizationHelper::getLangCodeById(Auth::user()->language) != $lang) ? 'hidden' : ''; @endphp @endforeach @else @endif
@include('admin.settings._link-modal') @stop @push('css') @include('admin.settings._style') @endpush @push('js') @include('layouts.partials._notification') @include('layouts.partials._switch_lang') @include('layouts.partials._csrf-token') @include('admin.languages._languages') @endpush @section('footer') @include('layouts.partials._footer') @stop