13 lines
611 B
PHP
Executable File
13 lines
611 B
PHP
Executable File
@extends('profilelayout')
|
|
@section('novidcontent')
|
|
@include('partials.flash')
|
|
<form action="{{action('UserController@login')}}" method="post" class="form-signin">
|
|
{!! csrf_field() !!}
|
|
<input type="text" name="identifier" placeholder="Username" class="form-control">
|
|
<input type="password" name="password" placeholder="Password" class="form-control">
|
|
<input type="checkbox" name="remember" checked> Remember me<br>
|
|
<button type="submit" class="btn btn-dark">Login</button>
|
|
<a href="{{url('register')}}" class="btn btn-success">Register</a>
|
|
</form>
|
|
@endsection
|