-@extends('simple-layout')
+@extends('layouts.simple')
@section('content')
<div class="card content-wrap auto-height">
<h1 class="list-heading">{{ Str::title(trans('auth.log_in')) }}</h1>
- @include('auth.forms.login.' . $authMethod)
+ @include('auth.parts.login-message')
+
+ @include('auth.parts.login-form-' . $authMethod)
@if(count($socialDrivers) > 0)
<hr class="my-l">
@foreach($socialDrivers as $driver => $name)
<div>
- <a id="social-login-{{$driver}}" class="button outline block svg" href="{{ url("/login/service/" . $driver) }}">
+ <a id="social-login-{{$driver}}" class="button outline svg" href="{{ url("/login/service/" . $driver) }}">
@icon('auth/' . $driver)
<span>{{ trans('auth.log_in_with', ['socialDriver' => $name]) }}</span>
</a>