Cosas del login, ademas de crear admin panel

This commit is contained in:
Daniel Cortés
2019-06-23 13:38:24 -04:00
parent 61cd63b265
commit be42d6f599
29 changed files with 365 additions and 274 deletions

View File

@@ -0,0 +1,18 @@
@extends('base')
@section('content')
<form method="POST" action="{{ route('login') }}">
@csrf
<div>
<label for="email" >e-mail</label>
<input id="email" type="email" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
</div>
<div>
<label for="password" >pass</label>
<input id="password" type="password" name="password" required autocomplete="current-password">
</div>
<button type="submit">login</button>
</form>
@endsection