Tạo tài khoản
{!! Form::open(array('url' => route('system.users.store'), 'method' => 'post', 'files'=> true, 'id'=>'validateForm','autocomplete'=>'off')) !!}
{!! Form::label('name', 'Họ tên', array('class' => 'control-label required')) !!}
{!! Form::text('name', null, array('class' => 'form-control square')) !!}
{!! Form::label('phone', 'Số điện thoại', array('class' => 'control-label')) !!}
{!! Form::text('phone', null, array('class' => 'form-control square','id'=>'phone')) !!}
{!! Form::label('email', 'Email', array('class' => 'control-label')) !!}
{!! Form::text('email', null, array('class' => 'form-control square')) !!}
{!! Form::label('department_id', 'Chức vụ', array('class' => 'control-label required')) !!}
{!! Form::select('department_id', $role, null, array('class' => 'form-control square','placeholder'=>'--Chức vụ--')) !!}
{{ Form::close() }}