@extends('pages.layout.main',['activePage'=>'customers.index'])
@section('content')
@include('pages.layout.flash_messages')
@include('components.breadCrumb.edit',['path' => route('customers.index'),'section' => __('Customers')])
{!! Form::open(['route'=>['customers.update','customer'=>$customer->id], 'method'=>'post','class'=>'kt-form kt-form--labe-right','id'=>'kt_form','enctype'=>'multipart/form-data']) !!}
@method('PATCH')
@include('pages.customers.form', ['disabled'=>false,'customer'=>$customer])
{!! Form::submit(__('Update'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection