@extends('layouts/contentLayoutMaster') @section('title', 'Create User') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content') {{ csrf_field() }} @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if(session('success')) {{ session('success') }} @endif Company * Select Company @foreach($employers as $employer) id ? 'selected' : '' }} value="{{ $employer->id }}">{{ $employer->b2b_company_name }} @endforeach Existing Candidate Select User Create New @if($users) @foreach($users as $user) {{ $user->first_name }} {{ $user->middle_name }} {{ $user->last_name }} @endforeach @endif Employee Types Select Employee Type Admin HR First Name @if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif Middle Name @if($errors->has('middle_name')) {{ $errors->first('middle_name') }} @endif Last Name @if($errors->has('last_name')) {{ $errors->first('last_name') }} @endif E-mail * @if($errors->has('email')) {{ $errors->first('email') }} @endif Country Code India (+91) UK (+44) USA (+1) @if($errors->has('country_code')) {{ $errors->first('country_code') }} @endif Mobile @if($errors->has('mobile')) {{ $errors->first('mobile') }} @endif Gender Male Female Password *(Should contain atleast a small, a caps, a digit and a special character.) @if($errors->has('password')) {{ $errors->first('password') }} @endif Assign Business Model Select Business Model @if($business_models) @foreach($business_models as $business_model) {{ $business_model->name }} @endforeach @endif Status Active Deactive Location Select Location @foreach($emp_locations as $location) {{ $location->name }} @endforeach Save Changes Reset @endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection
{{ $errors->first('first_name') }}
{{ $errors->first('middle_name') }}
{{ $errors->first('last_name') }}
{{ $errors->first('email') }}
{{ $errors->first('country_code') }}
{{ $errors->first('mobile') }}
{{ $errors->first('password') }}