@extends('layouts.site') @section('content')
@include('layouts.site-navigation') {!! Form::open(array('url' => URL_USERS_LOGIN, 'method' => 'POST', 'name'=>'formLanguage ', 'novalidate'=>'', 'class'=>"loginform", 'name'=>"loginForm")) !!} @include('errors.errors')
{{ Form::text('email', $value = null , $attributes = array('class'=>'form-control', 'ng-model'=>'email', 'required'=> 'true', 'id'=> 'email', 'placeholder' => getPhrase('username').'/'.getPhrase('email'), 'ng-class'=>'{"has-error": loginForm.email.$touched && loginForm.email.$invalid}', )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('email')!!}
{{ Form::password('password', $attributes = array('class'=>'form-control instruction-call', 'placeholder' => getPhrase("password"), 'ng-model'=>'registration.password', 'required'=> 'true', 'id'=> 'password', 'ng-class'=>'{"has-error": loginForm.password.$touched && loginForm.password.$invalid}', 'ng-minlength' => 5 )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('password')!!}
@if($rechaptcha_status == 'yes')
{!! app('captcha')->display() !!}
@endif
{!! Form::close() !!}
@stop @section('footer_scripts') @include('common.validations') {{-- --}} @stop