@extends('themes.default1.layouts.login') @section('body')

@if (Session::has('login_require')) {!! Session::get('login_require') !!} @else {!! Lang::get('lang.Login_to_start_your_session') !!} @endif

@if(Session::has('status'))
{{Session::get('status')}}
@endif @if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}! @if(Session::has('error'))
  • {!! Session::get('error') !!}
  • @else
  • {!! Lang::get('lang.please_fill_all_required_feilds') !!}
  • @endif
    @endif @if(Session::has('fails'))
    {!! Lang::get('lang.alert') !!}!
  • {!! Session::get('fails') !!}
  • @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']) !!}
    @if (Session::has('referer')) @elseif(Session::has('errors')) @endif
    {!! Lang::get("lang.iforgot") !!}
    {!! Lang::get("lang.register") !!} @include('themes.default1.client.layout.social-login') @stop