@extends('layouts/contentLayoutMaster') @section('title', 'Edit Client User') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content') {{ csrf_field() }} Company Select Company @foreach($employers as $employer) id == $employer->id ? 'selected' : '' }} value="{{ $employer->id }}">{{ $employer->b2b_company_name }} @endforeach Employee Types Select Employee Type @if($employeetypes) @foreach($employeetypes as $employeetype) employee_type_id == $employeetype->id ? 'selected' : '' }} value="{{ $employeetype->id }}">{{ $employeetype->type }} @endforeach @endif 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 country_code == '91' ? 'selected' : '' }} value="91" Selected>India (+91) country_code == '44' ? 'selected' : '' }} value="44">UK (+44) country_code == '1' ? 'selected' : '' }} value="1">USA (+1) @if($errors->has('country_code')) {{ $errors->first('country_code') }} @endif Mobile @if($errors->has('mobile')) {{ $errors->first('mobile') }} @endif Gender gender == 'M' ? 'selected' : '' }} value="M">Male gender == 'F' ? 'selected' : '' }} value="F">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) id == $b2buser->business_model_id ? 'selected' : '' }} value="{{ $business_model->id }}">{{ $business_model->name }} @endforeach @endif Status status == 'A' ? 'selected' : '' }} value="A">Active status == 'I' ? 'selected' : '' }} value="I">Deactive Location Select Location @foreach($emp_locations as $location) id == $loc ? 'selected' : '' }}>{{ $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') }}