@extends('layouts.site') @section('content')

{{getSetting('login_page_title','site_settings')}}

@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', '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', 'ng-class'=>'{"has-error": loginForm.password.$touched && loginForm.password.$invalid}', 'ng-minlength' => 5 )) }}
{!! getValidationMessage()!!} {!! getValidationMessage('password')!!}
{!! Form::close() !!}
@stop @section('footer_scripts') @include('common.validations') @stop