@extends('themes.default1.client.layout.logclient') @section('home') class = "active" @stop @section('HeadInclude') {{-- --}} @stop @section('breadcrumb')
@stop @section('content') @if(Session::has('status'))
{!! Lang::get('lang.success') !!} {{Session::get('status')}}
@endif @if(Session::has('error'))
{!! Lang::get('lang.alert') !!} {{Session::get('error')}}
@else @if (count($errors) > 0)
{!! Lang::get('lang.alert') !!} ! @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif @endif
    @if(Auth::user()) @else {!! Lang::get('lang.register') !!} @endif first(); ?> @if($system != null) @if($system->status) @if($system->status == 1) {!! Lang::get('lang.submit_a_ticket') !!} @endif @endif @endif {!! Lang::get('lang.my_tickets') !!} {!! Lang::get('lang.knowledge_base') !!}

    {{Lang::get('lang.login_to_start_your_session')}}

    {!! 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']) !!}
    {!! Form::close()!!} @stop