15 lines
372 B
PHP
15 lines
372 B
PHP
@extends('Shop.auth.layout', [
|
|
'title' => __('boilerplate::auth.login.title'),
|
|
'bodyClass' => 'hold-transition login-page'
|
|
])
|
|
|
|
@section('content')
|
|
|
|
@include('auth.partials.login')
|
|
|
|
<p class="mt-3">
|
|
Vous n'avez pas encore de compte ?
|
|
<a href="{{ route('register') }}" class="text-center">{{ __('Inscrivez-vous') }}</a>
|
|
</p>
|
|
@endsection
|