@extends('auth.layouts.app')
@section('title', 'Iniciar sesión')
@section('content')
@if($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{!! Form::open(['url' => '/login', 'autocomplete' => 'off']) !!}
{!! Form::text('email', old('email'), ['id' => 'email', 'class' => 'form-control', 'autofocus' => 'on','autocomplete' => 'off', 'required' => 'required']) !!}
{!! Form::submit('Ingresar', ['class' => 'btn btn-primary d-grid w-100']) !!}
{!! Form::close() !!}
@endsection
@section('js')