@php /** * @name Pagina login * @version 1.0.0 */ @endphp @extends('app') @section('content') @php $layout = call_setting('design.login.layout', 'login', 'logins'); @endphp
@if($layout == 'bg_left_minimal' || $layout == 'bg_right_minimal')
@endif @if($layout == 'minimal' || $layout == 'bg_left_minimal' || $layout == 'bg_right_minimal')
@endif @if(call_setting('app.modules.customers.status')) @get_template_part('page.auth.parts.customers', null, ['layout' => $layout]) @if($layout == 'default' || $layout == 'bg_top' || $layout == 'bg_left' || $layout == 'bg_right' || $layout == 'bg_left_minimal' || $layout == 'bg_right_minimal') @get_template_part('page.auth.parts.register', null, ['layout' => $layout, 'register_fields' => $register_fields]) @endif @endif @if(call_setting('app.modules.agents.status')) @get_template_part('page.auth.parts.agents', null, ['layout' => $layout]) @endif @if($layout == 'minimal' || $layout == 'bg_left_minimal' || $layout == 'bg_right_minimal')
@endif @if(call_setting('app.modules.customers.status')) @if($layout == 'minimal')
@get_template_part('page.auth.parts.register', null, ['layout' => $layout, 'register_fields' => $register_fields])
@endif @endif
@endsection