@extends('auth.layout') @section('content')
{{trans('messages.lbl_login_title')}}

{{trans('messages.lbl_login_cap')}}

@if (session()->has('success'))
{{ session('success') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
@csrf
@
{{trans('messages.lbl_notif_email')}}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{trans('messages.lbl_notif_password')}}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection