@extends('admin.layouts.app')
@section('title', 'Cart Settings')
@section('content')
Shopping Cart Settings
Configure checkout options, COD, and free shipping thresholds.
@if(session('success'))
{{ session('success') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error) - {{ $error }}
@endforeach
@endif
@endsection