@extends('layouts.master-auth') @section('css') @include('layouts.auth-partials.datatables-css') @endsection @section('content') @php $data = [ 'option' => $option, 'title' => $option, 'has_icon' => $icon, 'has_file' => $file, 'has_footer' => 'yes', 'isSave' => 'yes', 'cancel_url' => url('system_config/'.$option) ]; $data = array_merge($data, ['add_url' => 'javascript:void(0);', 'delete_url' => 'javascript:void(0);']) @endphp @include('others.main_content', $data) @include('others.form_request', ['frm_method' => 'POST', 'frm_action' => url('system_config/'.$option.'/save'), 'frm_id' => 'save_form']) @include('others.form_request', ['frm_method' => 'POST', 'frm_action' => url('system_config/'.$option.'/delete'), 'frm_id' => 'delete_form']) @endsection @section('scripts') @yield('additional-scripts') @include('layouts.auth-partials.datatables-scripts') @endsection