@extends('layouts.admin') @section('pageTitle') Best Insurance | Affiliates @stop @section('content')
{{Form::open(array('url' => '/account/ho-users/create-houser','id' => 'formValidation', 'method' => 'POST'))}}
* Password will be automatically generated and will be sent to given email.
@if(Auth::user()->role!="4")
{{Form::label('Select Affiliate Admin',array())}} {!!Form::select('affliate_admin', $affliate_admin, null, ['class' => 'form-control'])!!} @if($errors->has('affliate_admin')) @endif
@endif @if(Auth::user()->role=="4") @endif
{{Form::label('User First Name',array())}} {{Form::text('ho_first_name','',array('required' => true,'class' =>'form-control'))}} @if($errors->has('ho_first_name')) @endif
{{Form::label('User Last Name',array())}} {{Form::text('ho_last_name','',array('required' => true,'class' =>'form-control'))}} @if($errors->has('ho_last_name')) @endif
{{Form::label('User Email',array())}} {{Form::email('ho_email','',array('class' =>'form-control'))}} @if($errors->has('ho_email')) @endif
{{Form::submit('Submit',array('class' => 'btn btn-success'))}}
{{Form::close()}}
@stop @section('pageBottomJs') @stop