@extends('auth.auth-page', ['auth_type' => 'login']) @section('adminlte_css_pre') @stop @php( $login_url = View::getSection('login_url') ?? config('adminlte.login_url', 'login') ) @php( $register_url = View::getSection('register_url') ?? config('adminlte.register_url', 'register') ) @section('auth_header', __('adminlte::adminlte.login_message')) @section('auth_body')
{{ csrf_field() }} {{-- Email field --}}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{-- Password field --}}
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{-- Login field --}}
@stop @section('auth_footer') @stop