17 lines
423 B
PHP
17 lines
423 B
PHP
@extends('layout.index', [
|
|
'title' => 'Clients',
|
|
'subtitle' => 'Edition d\'un client',
|
|
'breadcrumb' => ['Articles']
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@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
|