@extends('layouts.auth') @section('title', __('Login')) @section('content')

@lang('Login')

@include('partials._alerts') {{ html()->form('POST', route('login'))->novalidate()->open() }}
{{ html()->email('email')->class('form-control')->attributes(['autocomplete' => 'off', 'placeholder' => __('email-form-label') ]) }}
{{ html()->password('password')->class('form-control')->attributes(['autocomplete' => 'off', 'placeholder' => __('password-form-label') ]) }}
{{ html()->submit(__('Login'))->class('btn btn-block btn-success') }}
{{ html()->checkbox('remember', false, 1)->class('ios-checkbox')->attributes(['autocomplete' => 'off']) }} {{ html()->label(__('Remember me'), 'remember') }} @lang('Password reset') | @lang('Account activation')
@include('partials._auth-pages-lang-switcher') {{ html()->form()->close() }}
@stop