Files
opensem/resources/views/Admin/Shop/Customers/create.blade.php
2021-10-30 02:22:51 +02:00

12 lines
350 B
PHP

@extends('layout.index', [
'title' => __('shop.customers.title'),
'subtitle' => __('shop.customers.add'),
'breadcrumb' => [__('shop.customers.title')]
])
@section('content')
{{ Form::open(['route' => 'Admin.Shop.Customers.store', 'id' => 'customer-form', 'autocomplete' => 'off']) }}
@include('Admin.Shop.Customers.form')
</form>
@endsection