@extends('appshell::layouts.private')
@section('title')
{{ __('Editing') }} {{ $customer->getName() }}
@stop
@section('content')
{!! Form::model($customer, ['route' => ['appshell.customer.update', $customer], 'method' => 'PUT']) !!}
@component(theme_widget('group'), ['accent' => 'secondary'])
@slot('title'){{ __('Customer Details') }}@endslot
@include('appshell::customer._form')
@endcomponent
@component(theme_widget('group'), ['accent' => 'secondary'])
@slot('title'){{ __('Settings') }}@endslot
@include('appshell::customer._settings')
@endcomponent
@component(theme_widget('group'))
{{ __('Cancel') }}
@endcomponent
{!! Form::close() !!}
@stop