@extends('Shared.Layouts.MasterWithoutMenus') @section('title', trans("User.login")) @section('content') {!! Form::open(['url' => route("login"), 'id' => 'login-form']) !!}
@if(Session::has('failed'))

@lang("basic.whoops")!

  • @lang("User.login_fail_msg")
@endif
{!! Form::label('email', trans("User.email"), ['class' => 'control-label']) !!} {!! Form::text('email', null, ['class' => 'form-control', 'autofocus' => true]) !!}
{!! Form::label('password', trans("User.password"), ['class' => 'control-label']) !!} (@lang("User.forgot_password?")) {!! Form::password('password', ['class' => 'form-control']) !!}
@include('Public.LoginAndRegister.Partials.CaptchaSection')

@if(Utils::isAttendize()) @endif
{!! Form::close() !!} @stop