@extends('master.app') @section('title', 'Create Customer') @section('pageCSS') @endsection @section('body')
{{-- Header --}}

Create Customer

Add a new customer record
Back
{{-- Validation Errors --}} @if ($errors->any())
Please fix the following:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- Name --}}
@error('name')
{{ $message }}
@enderror
{{-- Province --}}
@error('province_id')
{{ $message }}
@enderror
{{-- Phone --}}
@error('phone')
{{ $message }}
@enderror
{{-- Address --}}
@error('address')
{{ $message }}
@enderror
{{-- Type (optional UI) --}}
Account Type
If you want a login account, choose type S
{{-- Email --}} {{-- Password --}} {{-- Actions --}}
@endsection @section('pageJs') @endsection