@extends('layouts.guest') @section('body')
@csrf

@lang('texts.account_login')

@if (Session::has('error'))
  • {!! Session::get('error') !!}
  • @endif

    @if ($errors->has('email')) {{ $errors->first('email') }} @endif
    @if ($errors->has('password')) {{ $errors->first('password') }} @endif

    @env('hosted')

    @lang('texts.sign_up_now')

    @lang('texts.not_a_member_yet')

    @lang('texts.login_create_an_account')
    @endenv
    @endsection