@extends('admin.layouts.master') @section('title', 'Add User') @section('content')

{{ __('Add New User') }}

{{ __('Add New User') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('phone_no'))

{{ $errors->first('phone_no') }}

@endif
@if ($errors->has('whatsapp_no'))

{{ $errors->first('whatsapp_no') }}

@endif
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@if ($errors->has('user_type'))

{{ $errors->first('user_type') }}

@endif
@if ($errors->has('address'))

{{ $errors->first('address') }}

@endif
@if ($errors->has('icon'))

{{ $errors->first('icon') }}

@endif
@endsection