{{trans('website.labels.billing-information')}}

{{Form::label('billing_street', trans('website.fields.street').":")}} *
{{Form::text('billing_street')}}
{{$errors->billing->first('street', '
:message
')}}
{{Form::label('billing_postcode', trans('website.fields.postcode').":")}} *
{{Form::text('billing_postcode')}}
{{$errors->billing->first('postcode', '
:message
')}}
{{Form::label('billing_city', trans('website.fields.city').":")}} *
{{Form::text('billing_city')}}
{{$errors->billing->first('city', '
:message
')}}
{{Form::label('billing_country', trans('website.fields.country').":")}} *
{{Form::select('billing_country', $country_options)}}
{{$errors->billing->first('country', '
:message
')}}