From b2459a5f593ed143403b26dd722be7bf006a2516 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 26 Dec 2018 14:15:13 -0500 Subject: * Auth: Add auth --- laravel/resources/views/auth/login.blade.php | 73 ++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 laravel/resources/views/auth/login.blade.php (limited to 'laravel/resources/views/auth/login.blade.php') diff --git a/laravel/resources/views/auth/login.blade.php b/laravel/resources/views/auth/login.blade.php new file mode 100644 index 0000000..9edb920 --- /dev/null +++ b/laravel/resources/views/auth/login.blade.php @@ -0,0 +1,73 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+
{{ __('Login') }}
+ +
+
+ @csrf + +
+ + +
+ + + @if ($errors->has('email')) + + {{ $errors->first('email') }} + + @endif +
+
+ +
+ + +
+ + + @if ($errors->has('password')) + + {{ $errors->first('password') }} + + @endif +
+
+ +
+
+
+ + + +
+
+
+ +
+
+ + + @if (Route::has('password.request')) + + {{ __('Forgot Your Password?') }} + + @endif +
+
+
+
+
+
+
+
+@endsection -- cgit 1.4.1