@extends('Layouts.erp_master') @section('content') @php use App\Services\CommonService as Common; @endphp
@csrf {{-- Section --}}
Basic Information
(Maximum file size 1 Mb)
(Maximum file size 1 Mb)
(Image Ratio must be 1680 X 1121 px. Maximum file size 1 Mb)
Configuration

@if (Common::isSuperUser() == true || Common::isDeveloperUser() == true)
Developer Section
@php $sysModules = DB::table('gnl_sys_modules') ->where([['is_delete', 0], ['is_active', 1]]) ->select('id', 'module_name', 'module_short_name') ->orderBy('id', 'ASC') ->get(); $i = 0; @endphp @foreach ($sysModules as $module) @php $i++; @endphp
@endforeach
@endif
@include('elements.button.common_button', [ 'back' => true, 'submit' => [ 'action' => 'save', 'title' => 'Save', 'id' => 'nextTab', 'exClass' => 'float-right', ], ])
@endsection