@extends('layouts.partials.auth') @section('title', 'Login') @push('styles') @endpush @push('scripts') @endpush @section('content')
@csrf
@if ($logo)
Logótipo
@else

Login

@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif {{-- --}}
@endsection