53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
@extends('layouts.auth')
|
|
|
|
@section('htmlheader_title')
|
|
Log in
|
|
@endsection
|
|
|
|
@section('content')
|
|
<body class="hold-transition login-page">
|
|
<div id="app" v-cloak>
|
|
<div class="login-box">
|
|
<div class="login-logo">
|
|
<a href="{{ url('/home') }}">{!! config('app.name_html_long') !!}</a>
|
|
</div><!-- /.login-logo -->
|
|
|
|
@if (count($errors) > 0)
|
|
<div class="alert alert-danger">
|
|
<strong>Whoops!</strong> {{ trans('message.someproblems') }}<br><br>
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
<div class="login-box-body">
|
|
<p class="login-box-msg"> {{ trans('message.siginsession') }} </p>
|
|
|
|
<login-form name="{{ config('auth.providers.users.field','email') }}"
|
|
domain="{{ config('auth.defaults.domain','') }}"></login-form>
|
|
|
|
<a href="{{ url('/password/reset') }}">{{ trans('message.forgotpassword') }}</a><br>
|
|
|
|
@if(isset($site_social))
|
|
@include('auth.partials.social_login')
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@include('layouts.partials.scripts_auth')
|
|
|
|
<script>
|
|
$(function () {
|
|
$('input').iCheck({
|
|
checkboxClass: 'icheckbox_square-blue',
|
|
radioClass: 'iradio_square-blue',
|
|
increaseArea: '20%' // optional
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
@endsection
|