@extends('frontend.layout') @section('content')
@if(Session::has('success'))
{{ Session::get('success') }} @php Session::forget('success'); @endphp
@endif @if(Session::has('error'))
{{ Session::get('error') }} @php Session::forget('error'); @endphp
@endif @if(Session::has('errors'))
{{ 'Có lỗi xảy ra'}} @php Session::forget('errors'); @endphp
@endif
Đăng nhập
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif

Nếu chưa có tài khoản, Đăng ký tại đây

@endsection