@extends('layouts.master') @section('title') {{ trans_choice('general.add',1) }} {{ trans_choice('general.user',1) }} @endsection @section('content')

{{ trans_choice('general.add',1) }} {{ trans_choice('general.user',1) }}

{!! Form::open(array('url' => 'user/store','class'=>'',"enctype" => "multipart/form-data")) !!}
{!! Form::label(trans('general.first_name'),null,array('class'=>'control-label')) !!} {!! Form::text('first_name','',array('class'=>'form-control','required'=>'required')) !!}
{!! Form::label(trans('general.last_name'),null,array('class'=>'control-label')) !!} {!! Form::text('last_name','',array('class'=>'form-control','required'=>'required')) !!}
{!! Form::label(trans('general.gender'),null,array('class'=>' control-label')) !!} {!! Form::select('gender', array('Male' =>trans('general.male'), 'Female' => trans('general.female')),null,array('class'=>'form-control')) !!}
{!! Form::label(trans_choice('general.phone',1),null,array('class'=>'control-label')) !!} {!! Form::text('phone',null,array('class'=>'form-control')) !!}
{!! Form::label(trans_choice('general.email',1),null,array('class'=>'control-label')) !!} {!! Form::email('email','',array('class'=>'form-control','required'=>'required')) !!}
{!! Form::label(trans('general.password'),null,array('class'=>'control-label')) !!} {!! Form::password('password',array('class'=>'form-control','required'=>'required')) !!}
{!! Form::label(trans('general.repeat_password'),null,array('class'=>'control-label')) !!} {!! Form::password('rpassword',array('class'=>'form-control','required'=>'required')) !!}
{!! Form::label(trans_choice('general.role',1),null,array('class'=>' control-label')) !!} {!! Form::select('role', $role,'Client',array('class'=>'form-control')) !!}
{!! Form::label(trans('general.address'),null,array('class'=>'control-label')) !!} {!! Form::textarea('address','',array('class'=>'form-control wysihtml5')) !!}
{!! Form::label(trans_choice('general.note',2),null,array('class'=>'control-label')) !!} {!! Form::textarea('notes','',array('class'=>'form-control wysihtml5')) !!}
{!! Form::close() !!}
@endsection @section('footer-scripts') @endsection