@extends('layouts.app') @section('title', 'Add New User') @section('headSource') @endsection @section('content') @php $isSuperAdmin = Auth::user()->role == 'SuperAdmin' ? true : false; @endphp

Add New {{ !empty($type)?ucfirst($type):'User' }}

User details

{{-- @if(strtolower($type) != 'client')--}}
{{-- @endif--}}
@if($type == "") @else
{{$type}}
@endif
@if ($type == 'Coordinator' || $type == 'SuperAdmin' || $type == 'AssistantSuperAdmin')
@endif
@if($isSuperAdmin)
@endif
@if($isSuperAdmin) @endif
image
@if($type == 'Coordinator')

Business Information

@endif
@endsection @section('footerSource') @endsection