@extends('front.layouts.main') @section('title'){{ @trans('seo.login_title') }}@endsection @section('description'){{ @trans('seo.login_desc') }}@endsection @section('content')

{{ @trans('client_index.welcome_back') }},

@guest
@csrf
@if(Session::get('fail_message', false)) @component('admin.components.fail_message') {!! Session::get('fail_message') !!} @endcomponent @endif @if(Session::get('success')) @component('admin.components.success_message') {{ Session::get('success') }} @endcomponent @endif
@if($errors->has('username')) {{ $errors->first('username') }} @endif
@if($errors->has('password')) {{ $errors->first('password') }} @endif

{{ @trans('client_index.new_to_empower') }}? {{ @trans('client_index.register') }}

@endguest
Empower
@endsection @push('pageJs') @endpush