19 lines
383 B
PHP
19 lines
383 B
PHP
|
<?php
|
||
|
/*
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
||
|
*/
|
||
|
?>
|
||
|
|
||
|
@extends('layouts.app')
|
||
|
|
||
|
@section('title', __('Add Customers Group'))
|
||
|
|
||
|
@section('content')
|
||
|
@include('mmfcustomersgroups::groups/partials/edit_form', ['save_button_title' => __('Add')])
|
||
|
@endsection
|
||
|
|
||
|
@section('javascript')
|
||
|
@parent
|
||
|
@endsection
|