@extends('admin.layouts.app') @section('title', 'Main page') @section('content') {{-- {{session()->get('errors')}} --}}
@csrf
{{ $errors->first('first_name') }}
{{ $errors->first('last_name') }}
{{ $errors->first('phone') }}
{{ $errors->first('qty') }}
{{ $errors->first('payment_method') }}
{{ $errors->first('address') }}
{{ $errors->first('city') }}
{{ $errors->first('postcode') }}
{{ $errors->first('state') }}
{{ $errors->first('country') }}
{{ $errors->first('detail') }}
@endsection