@extends('landing.layouts.landing') @section('main-content') {{--
--}}
{{ __('landing.contact_us.smalltitle') }}

{{ __('landing.contact_us.title') }}

{{ __('landing.contact_us.description') }}
1 {{ __('landing.contact_us.step1.title') }}
{{ __('landing.contact_us.step1.description') }}
2 {{ __('landing.contact_us.step2.title') }}
{{ __('landing.contact_us.step2.description') }}
3 {{ __('landing.contact_us.step3.title') }}
{{ __('landing.contact_us.step3.description') }}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('company_name') {{ $message }} @enderror
@foreach ($categories as $category) @php switch (app()->getLocale()) { case 'hu': $category_name = $category->name_hu; break; case 'en': $category_name = $category->name_en; break; default: $category_name = $category->name_en; break; } @endphp @endforeach @error('options') {{ $message }} @enderror
@error('message') {{ $message }} @enderror
{{-- Kép leírása --}}
{{--
--}} @endsection