@extends('layouts.layout-2')
@section('content')
Kunden verwalten
{!! Form::open(['url' => route('customer_detail', [$id]), 'class' => 'form-horizontal', 'id'=>'customer-form-validation']) !!}
@include('customer._detail_customer')
@if($id !== "new" && $customer)
@include('customer._detail_booking')
@endif
{!! Form::close() !!}
@endsection