16 lines
426 B
PHP
16 lines
426 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.customer_addresses.title'),
|
|
'subtitle' => __('shop.customer_addresses.add'),
|
|
'breadcrumb' => [__('shop.customers.title')],
|
|
])
|
|
|
|
@section('content')
|
|
{{ Form::open([
|
|
'route' => 'Admin.Shop.CustomerAddresses.store',
|
|
'id' => 'customer_address-form',
|
|
'autocomplete' => 'off',
|
|
]) }}
|
|
@include('components.address')
|
|
</form>
|
|
@endsection
|