@extends('layout.master')
@section('content')
@include('layout.errorform')
@include('layout.info')
{!! Form::open(['route' => 'auth.store', 'class' => 'form-horizontal', 'id' => 'form', 'autocomplete' => 'off']) !!}
{!! Form::close() !!}
@endsection
@section('jquery')
$("#na").keyup(function() {
lch(this);
});
////////////////////////////////////////////////////////////////////////////////////
// bootstrap validator
$("#form").bootstrapValidator({
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
// email: {
// validators: {
// notEmpty: {
// message: 'Please insert your email '
// },
// // emailAddress: {
// // message: 'Please insert your valid email address'
// // },
// regexp: {
// regexp: /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,
// message: ' Please insert your valid email address'
// },
// different: {
// field: 'password',
// message: 'The e-mail and password cannot be the same as each other'
// },
// }
// },
username: {
message: 'The username is not valid',
validators: {
notEmpty: {
message: 'The username is required and cannot be empty'
},
stringLength: {
min: 6,
max: 10,
message: 'The username must be more than 6 and less than 10 characters long'
},
regexp: {
regexp: /^[a-zA-Z0-9_]+$/,
message: 'The username can only consist of alphabetical, number and underscore'
},
}
},
password: {
validators: {
notEmpty: {
message: 'Please insert your password '
},
}
},
}
})
////////////////////////////////////////////////////////////////////////////////////
@endsection