@extends('layouts.master') @section('title') Add User @endsection @section('css') @endsection @section('content') @component('common-components.breadcrumb') @slot('title')@endslot @endcomponent @if (Session::get('error'))
{{ Session::get('error') }}
@endif @if (Session::get('success'))
{{ Session::get('success') }}
@endif

Create New Admin/Organization

@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif @if(Session::get('email_error'))
{{ Session::get('email_error') }}
@endif
@if($errors->has('ein_number'))
{{ $errors->first('ein_number') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if($errors->has('confirmpassword'))
{{ $errors->first('confirmpassword') }}
@endif
Back
@endsection @section('script') @endsection