@extends('layouts.admin') @section('content') @php $dataErrors = []; if ($errors->has('shipping_email')) $dataErrors['shipping_email'] = $errors->first('shipping_email'); if ($errors->has('shipping_phone')) $dataErrors['shipping_phone'] = $errors->first('shipping_phone'); if ($errors->has('shipping_country')) $dataErrors['shipping_country'] = $errors->first('shipping_country'); if ($errors->has('shipping_province')) $dataErrors['shipping_province'] = $errors->first('shipping_province'); if ($errors->has('shipping_zip')) $dataErrors['shipping_zip'] = $errors->first('shipping_zip'); if ($errors->has('shipping_company')) $dataErrors['shipping_company'] = $errors->first('shipping_company'); if ($errors->has('shipping_name')) $dataErrors['shipping_name'] = $errors->first('shipping_name'); @endphp @endsection