@extends('admin.adminpanel') @section('content')
{{-- Displaying popup messages saying if the client was registered successfully or not --}}
@if(session('success'))
{{ session('success') }}
@elseif (session('failure'))
{{ session('failure') }}
@endif
{{-- Fetching validation errors, if any and create a popup container specifying the errors --}}
@if ($errors->any())
OOPS!
WE RAN INTO SOME VALIDATION ERRORS
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Register a new client

@csrf
1. Basic Details

**Check mark if billing address is same as registered address**

**TAN and GSTIN are not mandatory**


@endsection