@extends('appshell::layouts.private')
@section('title')
{{ __('Create new customer') }}
@stop
@section('content')
{!! Form::model($customer, ['route' => 'appshell.customer.store', 'autocomplete' => 'off']) !!}
@component(theme_widget('group'), ['accent' => 'success'])
@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