芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/resources/views/auth/login.blade.php
@extends('layouts.auth') @section('content')
{{ _lang('Login To Your Account') }} @if(Session::has('error'))
{{ session('error') }}
@endif @if(Session::has('registration_success'))
{{ session('registration_success') }}
@endif
@csrf
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
{{ _lang('Remember Me') }}
{{ _lang('Login') }}
@if(get_option('google_login') == 'enabled')
{{ _lang('Continue With Google') }}
@endif @if(get_option('facebook_login') == 'enabled')
{{ _lang('Continue With Facebook') }}
@endif @if(get_option('allow_singup') == 'yes')
{{ _lang('Create Account') }}
@endif
{{ _lang('Forgot Password?') }}
@if(get_option('enable_recaptcha', 0) == 1) @endif @endsection