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

{{ Lang::get('core.Login') }}

@if(Session::has('message')) {!! Session::get('message') !!} @endif
{!! Form::open(array('url'=>'user/signin', 'class'=>'form-vertical','id'=>'login-form')) !!}
{!! Form::text('email', $email , array('placeholder'=>Lang::get('core.email') ,'id'=>'email')) !!}
@if(CNF_RECAPTCHA =='true') {{ Lang::get('core.case_sensitive') }}
{!! captcha_img() !!}
@endif @if(CNF_REGIST !='false') @endif {!! Form::close() !!}
@if($socialize['google']['client_id'] !='' || $socialize['twitter']['client_id'] !='' || $socialize['facebook'] ['client_id'] !='') @endif
@stop