@extends('layouts.front-end.app') @section('title', translate('Checkout')) @section('content')
{{ translate('sign_in')}}
@include('web-views.partials._checkout-steps',['step'=>1])

{{translate('authentication')}}

@if(auth('customer')->check())

{{auth('customer')->user()->f_name}}, {{translate('Hi')}}!

{{translate('you_are_already_Sign_in_proceed')}}.
@else
@csrf
{{ translate('please_provide_a_valid_email_address')}}
{{ translate('forgot_password')}}?
@csrf
{{ translate('please_fill_in_your_first_name.')}}
{{ translate('please_fill_in_your_last_name.')}}
{{ translate('please_provide_a_valid_email_address.')}}
{{ translate('please_provide_a_valid_phone_number.')}}
@endif

@include('web-views.partials._order-summary')
@endsection @push('script') @endpush