@extends('app') @section('head_title',trans('words.login').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif @if(Session::has('error_flash_message'))
{{ Session::get('error_flash_message') }}
@endif {!! Form::open(array('url' => 'login','class'=>'card mb-0','id'=>'login','role'=>'form')) !!}
@if(getcong('facebook_login') OR getcong('google_login'))

{{trans('words.login_to_account')}}

{{trans('words.with_social')}}

@if(getcong('facebook_login')) Facebook @endif @if(getcong('google_login')) Google @endif

{{trans('words.or')}}
@else

{{trans('words.login_to_account')}}

 

@endif
{{trans('words.forgot_pass_text')}}

{{trans('words.dont_have_account')}} {{trans('words.register')}}

{!! Form::close() !!}
@endsection