@extends('frontend.provider.app') @section('title', 'Edit Shop') @section('content')
Back to Shops @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@include('provider.shops.partials.form-information', ['shop' => $shop])
{{ __('Cancel') }}
@include('provider.shops.partials.form-availability', ['shopWorkingDays' => $shopWorkingDays])
@endsection @push('scripts') @endpush