@extends('template.app') @section('meta') @endsection @section('title') Settings @endsection @section('styles') @endsection @section('content') @php $tab = 'general'; if(\Session::has('tab')) $tab = \Session::get('tab'); @endphp
@method('post') @csrf @if(isset($general) && $general->isNotEmpty()) @foreach($general as $row) @if(isset($row->key) && ($row->key == 'MINIMUM_CASH_RECEIPT_BALANCE' || $row->key == 'MAXIMUM_CASH_RECEIPT_BALANCE'))
@elseif(isset($row->key) && ($row->key == 'TERMS_AND_CONDITIONS'))
@endif @endforeach @endif
@endsection @section('scripts') @endsection