@extends('company_portal.layouts.master') @section('title','Add User') @section('header') @include('company_portal.partials.header') @endsection @section('content')
@csrf

Add new user


{{--
Avatar
#

Upload new photo

Allowed JPG, GIF or PNG. Max Size of 800KB

Reset

 

--}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if(session()->has('success-add-user'))

User has been added sucessfully. Please let him know to check his email and complete the registration.

@endif @if(session()->has('msg_error'))

Something went wrong. Please try again.

@endif
@endsection @push('scripts') @endpush