D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
wabot.whatzi.online
/
app
/
Http
/
Controllers
/
Auth
/
Filename :
LoginController.php
back
Copy
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use App\Models\User; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Str; use Illuminate\Validation\ValidationException; class LoginController extends Controller { public function index(){ return view('auth.login'); } public function store(Request $request){ if(Auth::attempt($request->only(['username','password']))){ return redirect('/home'); } throw ValidationException::withMessages([ 'username' => 'The provided credentials do not match our records.', ]); } }