@extends('admin.layouts.admin') @section('title') Admin | Add @endsection @section('styles') @endsection @section('content')

Add {{ ucwords(str_replace("-", " ", $userType)) }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if ($errors->has('name')) @endif
@if ($errors->has('email')) @endif
@if ($errors->has('phone')) @endif
@if ($errors->has('address')) @endif
@if ($errors->has('user_timezone')) @endif
@if ($errors->has('profile_image')) @endif Note: {{ ucwords(str_replace("-", " ", $userType)) }} will receive an email with login credential.
@endsection @section('scripts') @endsection