@extends('adminlte::auth.auth-page', ['auth_type' => 'login'])
@section('adminlte_css_pre')
@stop
@section('auth_header', __('adminlte::adminlte.login_message'))
@section('auth_body')
{!! html()->form('POST', route('auth.login'))->id('loginForm')->class('validate-form')->open() !!}
{!! html()->token() !!}
{{-- Username field --}}
{{-- Password field --}}
{{-- Submit button --}}
{!! html()->button()->type('submit')->class('btn btn-block ' . config('adminlte.classes_auth_btn', 'btn-flat btn-primary'))->html(' ' . __('adminlte::adminlte.sign_in')) !!}
{!! html()->form()->close() !!}
@stop
@push('js')
@endpush
@section('auth_footer')
{{-- Password reset link --}}
{{ __('adminlte::adminlte.i_forgot_my_password') }}
@stop