@extends('frontend.provider.app') @section('title', 'Add New Shop') @section('content')
{{ __('Back') }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@include('provider.shops.partials.form-information')
{{ __('Cancel') }}
@include('provider.shops.partials.form-availability')
@endsection @push('scripts') @endpush