@php $customizerHidden = 'customizer-hide'; $pageConfigs = ['myLayout' => 'blank']; @endphp @extends('layouts/layoutMaster' , ['body_class' => 'authentication']) @section('title', 'Login') @section('vendor-style') @endsection @section('page-style') @endsection @section('vendor-script') @endsection @section('page-script') {{-- --}} @endsection @section('content') @include('_partials.auth-section')
@include('_partials.auth-svg-top')
Welcome to {{ config('variables.templateName') }}!

Please sign-in to your account and start the adventure

@if (session('status'))

{{ session('status') }}

@endif @if (session()->has('inactive-user'))

{{ session('inactive-user') }}

@endif
@csrf @if ($errors->any())
{!! implode('
', $errors->all(':message')) !!}
@endif
@endsection