@extends('layouts.app') @section('title', ($shop? __(':name へお問い合わせ', ['name'=>$shop->t('name')]) : __('お問い合わせ')).'|'.config('app.name')) @section('content')
{{ __('ホーム') }} > {{ $shop? $shop->t('name').' '.__('お問い合わせ'):__('お問い合わせ') }}

{{ $shop? __(':name へお問い合わせ', ['name'=>$shop->t('name')]):__('お問い合わせ') }}

@if(session('flash'))
{{ session('flash') }}
@endif @if($errors->any())
@foreach($errors->all() as $e)
{{ $e }}
@endforeach
@endif
@csrf
@include('partials.recaptcha', ['formId'=>'contact'])
@endsection