@extends('layouts.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)
@endforeach @endif
@endsection @section('scripts') @endsection