@extends('layouts/contentLayoutMaster') @section('title', 'Create User') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @php $configData = Helper::applClasses(); $vendor_users = Auth::user(); $roles = $vendor_users->roles()->pluck('name')->implode(' '); @endphp @section('content')
{{ csrf_field() }}
@if($errors->has('first_name'))

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @if($vendor_id != NULL) @endif @endsection