{{-- ============================================================ modules/customers/form.blade.php (create & edit) ============================================================ --}} @extends('layouts.app') @section('title', isset($customer) ? 'Edit Pelanggan' : 'Tambah Pelanggan') @section('breadcrumb') Pelanggan {{ isset($customer) ? 'Edit '.$customer->nama : 'Tambah Baru' }} @endsection @section('content')

{{ isset($customer) ? 'Edit Pelanggan' : 'Tambah Pelanggan Baru' }}

@csrf @if(isset($customer)) @method('PUT') @endif
{{-- Identitas --}}
Identitas Pelanggan
{{-- Kontak --}}
Informasi Kontak
{{-- Kredit --}}
Termin & Kredit
hari
0 = COD / Bayar di muka
Rp
0 = Tidak ada limit
{{-- Status --}}
Status
status??'aktif')==='aktif' ? 'checked' : '' }}>
{{-- Action --}}
Kembali
@endsection