@extends('layouts.header') @section('content')

Add User

Back

@csrf
image thumb
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
@if ($errors->has('department')) {{ $errors->first('department') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif

@if ($errors->has('role')) {{ $errors->first('role') }} @endif
@endsection @section('append') @endsection