@extends('loja.default', ['title' => 'Cadastro']) @section('css') @endsection @section('content')
Início Cadastro
@csrf

Criar Conta

Preencha seus dados para continuar

@if($errors->has('nome'))

{{ $errors->first('nome') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('senha'))

{{ $errors->first('senha') }}

@endif

Endereço de Entrega

@if($errors->has('termos'))

{{ $errors->first('termos') }}

@endif
@if($carrinho == [])

Já tem uma conta? Fazer Login

@endif
@if($carrinho != [])

Resumo do Pedido

@foreach($carrinho->itens as $i)

{{ $i->produto->nome }}

{{ number_format($i->quantidade, 0) }}x R$ {{ number_format($i->valor_unitario, 2, ',', '.') }}

R$ {{ number_format($i->sub_total, 2, ',', '.') }}

@endforeach
Entrega: R$ {{ number_format($carrinho->valor_frete, 2, ',', '.') }}
Total: R$ {{ number_format($carrinho->valor_total, 2, ',', '.') }}

Já tem conta? Login

@endif
@endsection @section('js') @endsection