@extends('tablar::auth.layout') @section('title', 'Login') @section('content')

Login to your account

@if (session('status')) @endif @if (session('error')) @endif
@csrf
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
or
@if(Route::has('register'))
Don't have account yet? Sign up
@endif
@endsection