@extends('layouts.app') @section('content')
Edit Customer: {{$customer->name}}
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif {!! Form::model($customer, array('url' => url('customers/' . $customer->id), 'method' => 'PUT', 'class' => 'form-horizontal invoice-form')) !!}
Customer Name
Customer Adress
Customer VAT
Customer E-Mail Adress
{!! Form::submit('Save', array('class' => 'btn btn-default')) !!}
{!! Form::close() !!}
@endsection