201 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			201 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('themes.default1.agent.layout.agent')
 | |
| 
 | |
| @section('Users')
 | |
| class="active"
 | |
| @stop
 | |
| 
 | |
| @section('user-bar')
 | |
| active
 | |
| @stop
 | |
| 
 | |
| @section('user')
 | |
| class="active"
 | |
| @stop
 | |
| 
 | |
| <!-- header -->
 | |
| @section('PageHeader')
 | |
| <h1>{!! Lang::get('lang.create_user') !!}</h1>
 | |
| @stop
 | |
| <!-- /header -->
 | |
| <!-- content -->
 | |
| @section('content')
 | |
| @if(Session::has('fails'))
 | |
| <div class="alert alert-danger alert-dismissable">
 | |
|     <i class="fa fa-ban"></i>
 | |
|     <b>{!! Lang::get('lang.alert') !!}!</b>
 | |
|     <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
 | |
|     {{Session::get('fails')}}
 | |
| </div>
 | |
| @endif
 | |
| <!-- open a form -->
 | |
| {!! Form::open(['action'=>'Agent\helpdesk\UserController@store','method'=>'post']) !!}
 | |
| <div class="box box-primary">
 | |
|     <div class="box-header with-border">
 | |
|         <h3 class="box-title">
 | |
|             User Credentials
 | |
|         </h3>
 | |
|     </div>
 | |
|     <div class="box-body">
 | |
|         @if(Session::has('errors'))
 | |
|         <div class="alert alert-danger alert-dismissable">
 | |
|             <i class="fa fa-ban"></i>
 | |
|             <b>{!! Lang::get('lang.alert') !!}!</b>
 | |
|             <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
 | |
|             <br/>
 | |
|             @if($errors->first('first_name'))
 | |
|             <li class="error-message-padding">{!! $errors->first('first_name', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('last_name'))
 | |
|             <li class="error-message-padding">{!! $errors->first('last_name', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('user_name'))
 | |
|             <li class="error-message-padding">{!! $errors->first('user_name', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('email'))
 | |
|             <li class="error-message-padding">{!! $errors->first('email', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('country_code'))
 | |
|             <li class="error-message-padding">{!! $errors->first('country_code', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('mobile'))
 | |
|             <li class="error-message-padding">{!! $errors->first('mobile', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('ext'))
 | |
|             <li class="error-message-padding">{!! $errors->first('ext', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('phone_number'))
 | |
|             <li class="error-message-padding">{!! $errors->first('phone_number', ':message') !!}</li>
 | |
|             @endif
 | |
|             @if($errors->first('active'))
 | |
|             <li class="error-message-padding">{!! $errors->first('active', ':message') !!}</li>
 | |
|             @endif
 | |
|         </div>
 | |
|         @endif        
 | |
|         <div class="row">
 | |
|             <!-- First name : first name : Required -->
 | |
|             <div class="col-xs-6 form-group {{ $errors->has('first_name') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('first_name',Lang::get('lang.first_name')) !!}<span class="text-red"> *</span>
 | |
|                 {!! Form::text('first_name',null,['class' => 'form-control']) !!}
 | |
|             </div>
 | |
|             <!-- Last name : last name : Required -->
 | |
|             <div class="col-xs-6 form-group {{ $errors->has('last_name') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('last_name',Lang::get('lang.last_name')) !!}
 | |
|                 {!! Form::text('last_name',null,['class' => 'form-control']) !!}
 | |
|             </div>
 | |
|             <!-- User Name : Text : Required-->
 | |
|         </div>
 | |
|         <div class="row">
 | |
|             <!-- Email Address : Email : Required -->
 | |
|             <div class="col-xs-6 form-group {{ $errors->has('email') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('email',Lang::get('lang.email')) !!}
 | |
|                 @if ($email_mandatory->status == 1 || $email_mandatory->status == '1')
 | |
|                 <span class="text-red"> *</span>
 | |
|                 @endif
 | |
|                 {!! Form::email('email',null,['class' => 'form-control']) !!}
 | |
|             </div>
 | |
|             
 | |
|             <div class="col-xs-6 form-group {{ $errors->has('user_name') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('user_name',Lang::get('lang.user_name')) !!}<span class="text-red"> *</span>
 | |
|                 {!! Form::text('user_name',null,['class' => 'form-control']) !!}
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="row">
 | |
|             <div class="col-xs-6 form-group {{ $errors->has('organization') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('organization',Lang::get('lang.organization')) !!}
 | |
|                 {!! Form::select('org_id',[''=>'Select','Organization'=>$org],null,['class' => 'form-control','id'=>'org']) !!}
 | |
|                 
 | |
|             </div>
 | |
|         </div>
 | |
|         <div class="row">
 | |
|             <div class="col-xs-1 form-group {{ $errors->has('country_code') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('country_code',Lang::get('lang.country-code')) !!}
 | |
|                 @if ($email_mandatory->status == 0 || $settings->status == 1)
 | |
|                      <span class="text-red"> *</span>
 | |
|                 @endif
 | |
|                 <!-- {!! $errors->first('country_code', '<spam class="help-block">:message</spam>') !!} -->
 | |
|                 {!! Form::text('country_code',null,['class' => 'form-control', 'placeholder' => $phonecode, 'title' => Lang::get('lang.enter-country-phone-code')]) !!}
 | |
|             </div>
 | |
|             <!-- mobile Number : Text :  -->
 | |
|             <div class="col-md-3 form-group {{ $errors->has('mobile') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('mobile',Lang::get('lang.mobile')) !!}
 | |
|                 @if ($email_mandatory->status == 0 || $settings->status == 1)
 | |
|                      <span class="text-red"> *</span>
 | |
|                 @endif
 | |
|                 {!! Form::input('number', 'mobile',null,['class' => 'form-control']) !!}
 | |
|             </div>
 | |
|             <div class="col-xs-1 form-group {{ $errors->has('ext') ? 'has-error' : '' }}">
 | |
|                 <label for="ext">{!! Lang::get('lang.ext') !!}</label>  
 | |
|                 {!! Form::text('ext',null,['class' => 'form-control']) !!}
 | |
|             </div>
 | |
|             <div class="col-xs-3 form-group {{ $errors->has('phone_number') ? 'has-error' : '' }}">
 | |
|                 <label for="phone_number">{!! Lang::get('lang.phone') !!}</label>
 | |
|                 {!! Form::text('phone_number',null,['class' => 'form-control']) !!}
 | |
|             </div>
 | |
|             <div class="col-md-3 form-group {{ $errors->has('active') ? 'has-error' : '' }}">
 | |
|                 {!! Form::label('active',Lang::get('lang.status')) !!}
 | |
|                 <div class="row">
 | |
|                     <div class="col-xs-4">
 | |
|                         {!! Form::radio('active','1',true) !!} {{Lang::get('lang.active')}}
 | |
|                     </div>
 | |
|                     <div class="col-xs-6">
 | |
|                         {!! Form::radio('active','0') !!} {{Lang::get('lang.inactive')}}
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
|         <!-- Internal Notes : Textarea -->
 | |
|         <div class="form-group">
 | |
|             {!! Form::label('internal_note',Lang::get('lang.internal_notes')) !!}
 | |
|             {!! Form::textarea('internal_note',null,['class' => 'form-control', 'size' => '30x5']) !!}
 | |
|         </div>
 | |
|         <!-- Send email to user about registration password -->
 | |
|         <div class="form-group">
 | |
|             <input type="checkbox" name="send_email" checked>  <label> {{ Lang::get('lang.send_password_via_email')}}</label>
 | |
|         </div>
 | |
|     </div>
 | |
|     <div class="box-footer">
 | |
|         {!! Form::submit(Lang::get('lang.submit'),['class'=>'form-group btn btn-primary'])!!}
 | |
|     </div>
 | |
| </div>
 | |
| <script>
 | |
|     $(function () {
 | |
|         $("textarea").wysihtml5();
 | |
| 
 | |
|         $('input[type="checkbox"]').iCheck({
 | |
|             checkboxClass: 'icheckbox_flat-blue'
 | |
|         });
 | |
|         $('input[type="radio"]').iCheck({
 | |
|             radioClass: 'iradio_flat-blue'
 | |
|         });
 | |
| 
 | |
|     });
 | |
| </script>
 | |
| @stop
 | |
| @section('FooterInclude')
 | |
| <!--<script>
 | |
|     $('#org').autocomplete({
 | |
|         minLength: 1,
 | |
|         source: function (request, response) {
 | |
|             $.getJSON("{{url('get-organization')}}", {
 | |
|                 term: request.term
 | |
|             }, function (data) {
 | |
|                 var array = data.error ? [] : $.map(data, function (m) {
 | |
|                     return {
 | |
|                         label: m.label,
 | |
|                         value: m.value
 | |
|                     };
 | |
|                 });
 | |
|                 response(array);
 | |
|             });
 | |
|         },
 | |
|         select: function (event, ui) {
 | |
|             $("#org").val(ui.item.label); // display the selected text
 | |
|             $("#field_id").val(ui.item.value); // save selected id to hidden input
 | |
|             return false;
 | |
|         }
 | |
|     });
 | |
| 
 | |
| </script>-->
 | |
| 
 | |
| @stop
 | 
