17 lines
301 B
PHP
17 lines
301 B
PHP
@extends('layout')
|
|
|
|
@section('head')
|
|
<link rel="stylesheet" href="{{ asset('css/auth.css') }}">
|
|
@endsection
|
|
|
|
@section('content')
|
|
<h2>{{ __('Login') }}</h2>
|
|
|
|
<div class="form">
|
|
<form method="POST" action="{{ route('login') }}">
|
|
|
|
|
|
|
|
</form>
|
|
</div>
|
|
@endsection
|