@extends('themes.default1.layouts.login')
@section('body')
{!! Lang::get('lang.Login_to_start_your_session') !!}
@if(Session::has('status'))
{!! Lang::get('lang.success') !!}
{{Session::get('status')}}
@endif
@if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@endif
{!! Form::open(['action'=>'Auth\AuthController@postLogin', 'method'=>'post']) !!}
{!! Form::text('email',null,['placeholder'=> Lang::get("lang.email") ,'class' => 'form-control']) !!}
{!! $errors->first('email', ':message') !!}
{!! Form::password('password',['placeholder'=>Lang::get("lang.password"),'class' => 'form-control']) !!}
{!! $errors->first('password', ':message') !!}
{!! Lang::get("lang.iforgot") !!}
{!! Lang::get("lang.reg_new_member") !!}
@stop