@extends('layouts.app') @section('content')
@csrf

Edit Seller Address

@if ($errors->has('address1')) {{ $errors->first('address1') }} @endif
@if ($errors->has('address2')) {{ $errors->first('address2') }} @endif
@if ($errors->has('landmark')) {{ $errors->first('landmark') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif

@if ($errors->has('state')) {{ $errors->first('state') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('zip')) {{ $errors->first('zip') }} @endif

@if ($errors->has('open_time')) {{ $errors->first('open_time') }} @endif
@if ($errors->has('close_time')) {{ $errors->first('close_time') }} @endif
@endsection