15 lines
367 B
PHP
15 lines
367 B
PHP
@extends('auth.layout', [
|
|
'title' => __('boilerplate::auth.login.title'),
|
|
'bodyClass' => 'hold-transition login-page'
|
|
])
|
|
|
|
@section('content')
|
|
<div class="row" style="width: 380px;">
|
|
<div class="col-12 text-center">
|
|
<img src="/img/logo.png" height="128">
|
|
</div>
|
|
</div>
|
|
|
|
@include('Admin.auth.partials.login')
|
|
@endsection
|