15 lines
418 B
PHP
15 lines
418 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.customers.title'),
|
|
'subtitle' => __('shop.customers.edit'),
|
|
'breadcrumb' => [__('shop.customers.title')]
|
|
])
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Admin.Shop.Customers.update', 'id' => 'customer-form', 'autocomplete' => 'off']) }}
|
|
<input type="hidden" name="id" value="{{ $customer['id'] }}">
|
|
@include('Admin.Shop.Customers.form')
|
|
</form>
|
|
|
|
@endsection
|