@extends('web.layouts.app') @section('title',trans('site.carts')) @section('content')
{{csrf_field()}}

@lang('site.address_details')

@lang('site.first_name')

@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif

@lang('site.mobile')

@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif

@lang('site.address')

@if($errors->has('address')) {{ $errors->first('address') }} @endif

@lang('site.discount_code')

@lang('site.id_number')

@lang('site.building')

@lang('site.building_number')

@lang('site.receiver_name')

@lang('site.receiver_id_number')

@lang('site.family_name')

@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif

@lang('site.city')

@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif

@lang('site.address_map')


@if ($errors->has('lat') || $errors->has('lng')) {{ $errors->first('lat') }} @endif
@stop @section('script') @stop