@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','ASC Merchant Edit') {{-- page style --}} @section('page-style') @endsection {{-- vendor style --}} @section('vendor-style') @endsection {{-- page content --}} @section('content')
arrow_backBack
@csrf @method('put')

Merchant Edit - {{ $merchant->name }}

{{-- @if ($merchant->is_asc == 0 && $errors->first('longitude') || $merchant->is_asc == 0 && $errors->first('latitude')) @endif --}} {{-- @if ($merchant->is_asc == 1) @endif --}}
Display Merchant Id *
@if ($errors->has('display_merchant_id'))
{{ $errors->first('display_merchant_id') }}
@endif
Name *
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Phone Number *
@if ($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
Address *
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Grade *
@if ($errors->has('grade'))
{{ $errors->first('grade') }}
@endif
Limited Credit *
@if ($errors->has('limited_credit'))
{{ $errors->first('limited_credit') }}
@endif
Choose your city *
@if ($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
Choose your township *
Is Priority *

@if ($errors->has('is_priority'))
{{ $errors->first('is_priority') }}
@endif
Is Asc *

@if ($errors->has('is_asc'))
{{ $errors->first('is_asc') }}
@endif
Latitude *
@if ($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
Longitude *
@if ($errors->has('longitude'))
{{ $errors->first('longitude') }}
@endif
Latitude *
@if ($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
Longitude *
@if ($errors->has('longitude'))
{{ $errors->first('longitude') }}
@endif
Latitude *
@if ($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
Longitude *
@if ($errors->has('longitude'))
{{ $errors->first('longitude') }}
@endif
Image *
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Merchant Images
@forelse ($merchant->images as $image) @empty

No Image Found!

@endforelse
error_outline Merchant Owner Info
Owner Name *
@if ($errors->has('owner_name'))
{{ $errors->first('owner_name') }}
@endif
Owner Ph No *
@if ($errors->has('owner_phone_number'))
{{ $errors->first('owner_phone_number') }}
@endif
Owner Email
@if ($errors->has('asc_owner_email'))
{{ $errors->first('asc_owner_email') }}
@endif
Owner Profile
@if ($errors->has('asc_owner_profile'))
{{ $errors->first('asc_owner_profile') }}
@endif
Owner Address
Cancel
addCreate Merchant Time
@forelse ($merchant_working_times as $key => $merchant_working_time) @empty @endforelse
# Opening Time Closing Time Day Edit Delete
{{$key+1}} {{$merchant_working_time->opening_time}} {{$merchant_working_time->closing_time}} {{$merchant_working_time->day}} Edit
No Items Found!
@endsection {{-- vendor script --}} @section('vendor-script') @endsection {{-- page script --}} @section('page-script') @endsection