{{ Form::open(array('url' => '/auth/selfresend','class'=>'form','id'=>'resendactvmail')) }} @if (Session::has('notification')) {{ Session::get('notification') }} @endif @if (Session::has('success'))

An activation link has been successfully sent to your registered email id.

   Login Cancel

@else

Resend Activation Mail

Enter email address and we will send activation link to your mail.

* {{ Form::label('email', 'Email Id') }} {{ Form::text('email', Input::old('email'),array('class'=>'inputStyle')) }} @if($errors->has('email'))

{{$errors->first('email')}}

@endif

   {{ Form::submit('Submit', array('class'=>'btn btn-medium btn-large', 'onclick' => 'return validate()')) }} Cancel

@endif {{ Form::close() }}