@extends('layout')
@section('title', 'Login')
@section('content')
@if (session()->has('success'))
{{ __('text.succes') }} {{ session()->get('success') }}.
@endif
@if (session()->has('error'))
{{ __('text.eror') }} {{ session()->get('error') }}.
@endif
@endsection