@extends('layouts.app') @section('content')

{{ $customer->exists ? 'Edit Customer' : 'New Customer' }}

@if($errors->any())
{{ $errors->first() }}
@endif
@csrf @if($customer->exists) @method('PUT') @endif
@endsection