@extends('panel.layout.base') @section('title',$title) @section('content')
{!! \App\Metha\TMethaForm::open([ 'method' => 'POST', 'action' => $action ]) !!} @csrf
@if($errors->any()) @foreach($errors->all() as $error) @endforeach
@endif
@foreach(\App\Models\Language::all()->where('status','Y')->toArray() as $index => $item)
{!! $form['lang'][$item['code']] !!}
@endforeach
{!! $form['general'] !!}
{!! \App\Metha\TMethaForm::close() !!}
@endsection @section('script') @if(isset($script)) @include(sprintf('panel.scripts.%s',$script)) @endif @endsection