@extends('layouts.app') @section('title', 'Customer') @section('content')

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

@csrf @if($customer->exists) @method('PUT') @endif @foreach([['name','Name *','text',true],['company_name','Company','text',false],['email','Email','email',false],['phone','Phone','text',false],['tax_number','Tax Number','text',false]] as [$f,$l,$t,$req])
@endforeach
@endsection