@extends('auth.auth')
@section('htmlheader_title')
Log in
@endsection
@section('content')
@if (count($errors) > 0)
Por favor Ingrese datos validos.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(isset($status))
{{ $status }}
@endif
@include('auth.scripts')
@endsection