@extends('admin.layouts.master') @section('title', 'Edit Pickup Address') @section('content')

{{ __('Edit Pickup Address') }}

@csrf
@if ($errors->has('name'))

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

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

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

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

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

@endif
*
@if ($errors->has('status'))

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

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

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

@endif
@endsection