@extends('admin/layouts/default') @section('title') Customers @parent @stop @section('content') @include('adminlte-templates::common.errors')

{{Lang::get('customer.customers_edit')}}

{{Lang::get('customer.edit_customer')}}


{!! Form::model($customer, ['route' => ['admin.customers.update', collect($customer)->first() ], 'method' => 'patch','id' => 'customer-form','files' => 'true']) !!} @include('admin.customers.fields')
{!! Form::submit(Lang::get('general.save'), ['class' => 'btn btn-primary two-btns']) !!} {{Lang::get('general.cancel')}}
{!! Form::close() !!}
@stop @section('footer_scripts') @stop