@extends('layouts.auth') @section('page-title',__lang('login')) @if($enableRegistration) @section('page-class') class="col-12 col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-8 offset-lg-2 col-xl-8 offset-xl-2" @endsection @endif @section('content')

{{ __lang('login') }}

@csrf
{{ __lang('email-required') }}
@error('email') {{ $message }} @enderror
{{ __lang('fill-password') }}
@error('password') {{ $message }} @enderror
@if(setting('social_enable_facebook')==1 || setting('social_enable_google')==1)
{{ __lang('social-login') }}
@if(setting('social_enable_facebook')==1) @endif @if(setting('social_enable_google')==1) @endif
@endif
@if($enableRegistration)

{{ __lang('new-user') }}



{{ __lang('register') }}
@endif
@if($enableRegistration)
{{ __lang('dont-have-account') }} {{ __lang('create-one') }}
@endif @endsection