@extends('storefront::public.layout') @section('title', trans('user::auth.login')) @section('content')
@include('storefront::public.auth.partials.social_login')
Or continue with email
@include('storefront::public.auth.partials.notification')
@csrf
{!! $errors->first('email', ':message') !!}
{!! $errors->first('password', ':message') !!}
@include('storefront::public.auth.partials.notification')
@csrf @honeypot
{!! $errors->first('first_name', ':message') !!}
{!! $errors->first('last_name', ':message') !!}
{!! $errors->first('email', ':message') !!}
{!! $errors->first('phone', ':message') !!}
{!! $errors->first('password', ':message') !!}
{!! $errors->first('password_confirmation', ':message') !!}
@if (setting('google_recaptcha_enabled'))
@error('g-recaptcha-response') {{ $message }} @enderror
@endif
{!! $errors->first('privacy_policy', ':message') !!}
@endsection