@extends('layouts.master') @section('title', 'Customer') @section('page-header') Customer Create @stop @push('style') @endpush @section('content')
@include('partials._alert_message')

@yield('page-header')

@csrf
@include('includes.inputs.input-field', ['name' => 'name', 'is_required' => true]) @include('includes.inputs.input-field', ['name' => 'mobile']) @include('includes.inputs.input-field', ['name' => 'email', 'type' => 'email']) @include('includes.inputs.input-field', ['name' => 'address']) {{-- @include('includes.inputs.input-field', ['name' => 'opening_balance', 'title' => 'Opening Balance']) --}}
@endsection @section('js') @endsection