@extends('frontend.layouts.app') @section('title', app_name() . ' | ' . __('labels.frontend.auth.login_box_title')) @section('content')
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} {{ html()->email('email') ->class('mb-0') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.frontend.password'))->for('password') }} {{ html()->password('password') ->class('mb-0') ->placeholder(__('validation.attributes.frontend.password')) ->required() }}
{{ html()->form()->close() }}