@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') !!}! @if(Session::has('error'))
  • {!! Session::get('error') !!}
  • @else
  • Please fill all required feilds.
  • @endif
    @endif {!! Form::open(['action'=>'Auth\AuthController@postLogin', 'method'=>'post']) !!}
    {!! Form::text('email',null,['placeholder'=> Lang::get("lang.email") ,'class' => 'form-control']) !!}
    {!! Form::password('password',['placeholder'=>Lang::get("lang.password"),'class' => 'form-control']) !!}
    {!! Lang::get("lang.iforgot") !!}
    {!! Lang::get("lang.register") !!} @stop