@extends("backend.layouts.app") @section("title") {{ __($module_action) }} {{ __($module_title) }} @endsection @section("breadcrumbs") {{ __($module_title) }} @endsection @section("content")
{{ html()->form("POST", route("backend.$module_name.store"))->open() }} @if (count(config("setting_fields", []))) @foreach (config("setting_fields") as $section => $fields)
 {{ $fields["title"] }}

{{ $fields["desc"] }}

@foreach ($fields["elements"] as $field) @includeIf("backend.settings.fields." . $field["type"]) @endforeach
@endforeach @endif
{{ html()->form()->close() }}
@endsection