@extends('admin.layouts.login') @section('content')
{{--
Login
--}}
{{-- De error --}} @if(Session::has('mensajeError')) @endif {{-- ok --}} @if(Session::has('guardado')) @endif {{-- {{ LaravelLocalization::getCurrentLocale() }} --}}
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_nuevo')) {{ $errors->first('password_nuevo') }} @endif
@if ($errors->has('password_nuevo_confirm')) {{ $errors->first('password_nuevo_confirm') }} @endif
@if(Session::has('guardado')) Ingresar @endif
@endsection