21 lines
540 B
PHP
21 lines
540 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('Shop.auth.partials.login')
|
|
|
|
<p class="mt-3">
|
|
Vous n'avez pas encore de compte ?
|
|
<a href="{{ route('Shop.register') }}" class="text-center">{{ __('Inscrivez-vous') }}</a>
|
|
</p>
|
|
@endsection
|