@extends('admin.adminpanel') @section('content')
{{-- Displaying messages specifying registration is successfull 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

Edit Internal Company details

@csrf

**TAN and GSTIN are not mandatory**

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

Bank Details

@endsection