{{-- resources/views/auth/login.blade.php --}} @extends('layouts.base') @php $locale = app()->getLocale(); //$locale = 'fr'; // Forcer le français pour l'instant $iconBase = "assets/icons/{$locale}"; @endphp {{-- @include('partials.bottom_nav', [ 'bottomInfo' => [ 'label' => __('Plus d’information'), 'target' => '#waypoint-details', // un id dans la page ], 'bottomTabs' => [ [ 'icon' => "addV_picto.svg", 'label' => __('Join'), 'drawer' => 'maps', // ouvre le tiroir "maps" ], [ 'icon' => "share_picto.svg", 'label' => __('Create a waypoint'), 'drawer' => 'share', // ouvre le tiroir "share" ], [ 'icon' => "myV_picto.svg", 'label' => __('My Vereego'), 'href' => lr('search'), 'primary' => false, ], ], ]) --}} @section('title', __('Login')) @section('content')

{{ __('login') }}

@if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
@endif
@csrf
{{--
--}}
{{--
--}}
@endsection