@extends('layouts.front') @push('css') @endpush @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{!! session('error') !!}
@endif

@lang('Login/Register')

@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@includeIf('partials.front.cta') @endsection