@extends('layouts.app') @section('page_css') @parent @endsection @section('theme_css') @endsection @section('content') {{--

Add User

--}}

Add New User

{!! Form::open(['url' => route('portal.users.store'), 'class' => 'form floating-label add-user-form no-margin', 'method' => 'post', 'enctype'=>'multipart/form-data']) !!}
{!! Form::text('first_name', null, ['class' => 'form-control', 'id' => 'first_name']) !!} @if ($errors->has('first_name')) @endif
{!! Form::text('last_name', null, ['class' => 'form-control', 'id' => 'last_name']) !!} @if ($errors->has('last_name')) @endif
{!! Form::text('email', null, ['class' => 'form-control', 'id' => 'email', 'placeholder'=>'Email', 'data-url' => route('portal.users.checkDuplicateEmail')]) !!} @if ($errors->has('email')) @endif
{!! Form::text('mobile', null, ['class' => 'form-control', 'id' => 'mobile', 'placeholder'=>'Mobile Number']) !!} @if ($errors->has('mobile')) @endif
{!! Form::password('password', ['class' => 'form-control', 'id' => 'password', 'placeholder'=>'Password']) !!} @if ($errors->has('password')) @endif
{!! Form::password('password_confirmation', ['class' => 'form-control', 'id' => 'password_confirmation', 'placeholder'=>'Confirm Password']) !!} @if ($errors->has('password_confirmation')) @endif
{!! Form::select('user_type', [" "=>'Select']+_USER_TYPE_ARR_, " ", ['class' => 'form-control tom-select w-full', 'id' => 'user_type', 'data-placeholder'=>'Select']) !!} @if ($errors->has('user_type')) @endif
@if ($errors->has('type')) @endif
{{--startup category start--}} {{--startup category start--}}
@if ($errors->has('linkedin_profile')) @endif
@if ($errors->has('instagram_profile')) @endif
@if ($errors->has('profile_pic')) @endif
@if ($errors->has('about')) @endif
{!! Form::close() !!}
@endsection @section('plugin_scripts') @endsection @section('page_scripts') @parent {{ Html::script(config('app.assets_url').'dist/js/users/user.js') }} @endsection