@extends('layouts.app') @php $locales = [ 'ro' => [ 'label' => 'RO', ], 'en' => [ 'label' => 'EN', ], 'ru' => [ 'label' => 'RU', ], 'it' => [ 'label' => 'IT', ], ]; $currentLocale = app()->getLocale(); $segments = request()->segments(); if (in_array($segments[0] ?? '', array_keys($locales), true)) { array_shift($segments); } $path = implode('/', $segments); $canonicalUrl = url($currentLocale . ($path ? '/' . $path : '')); $schema = [ '@context' => 'https://schema.org', '@type' => 'LegalService', 'name' => config('app.name', 'Radiere SRL'), 'url' => $canonicalUrl, 'areaServed' => 'RO', 'serviceType' => __('home.meta.service_type'), 'description' => __('home.meta.description'), ]; @endphp @section('title', __('home.meta.title')) @section('meta_description', __('home.meta.description')) @section('canonical', $canonicalUrl) @section('schema') @json($schema, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) @endsection @section('content')
{!! file_get_contents(public_path('uploads/radiere-logo.svg')) !!} {{ config('app.name', 'Radiere SRL') }}
{{ __('home.language.label') }}
{{ __('home.hero.badge') }}

{{ __('home.hero.title') }}

{{ __('home.hero.description') }}

{{ __('home.hero.cta_primary') }} {{ __('home.hero.cta_secondary') }}
{{ __('home.hero.points.status') }} {{ __('home.hero.points.file') }}

{{ __('home.hero.card.title') }}

{{ __('home.hero.card.subtitle') }}

{{ __('home.hero.card.items.file') }} {{ __('home.hero.card.status.done') }}
{{ __('home.hero.card.items.publish') }} {{ __('home.hero.card.status.progress') }}
{{ __('home.hero.card.items.certificate') }} {{ __('home.hero.card.status.next') }}

{{ __('home.sections.service.items.discovery.title') }}

{{ __('home.sections.service.items.discovery.body') }}

{{ __('home.sections.service.items.file.title') }}

{{ __('home.sections.service.items.file.body') }}

{{ __('home.sections.service.items.follow.title') }}

{{ __('home.sections.service.items.follow.body') }}

  1. {{ __('home.sections.steps.step', ['number' => 1]) }}

    {{ __('home.sections.steps.items.chat.title') }}

    {{ __('home.sections.steps.items.chat.body') }}

  2. {{ __('home.sections.steps.step', ['number' => 2]) }}

    {{ __('home.sections.steps.items.prepare.title') }}

    {{ __('home.sections.steps.items.prepare.body') }}

  3. {{ __('home.sections.steps.step', ['number' => 3]) }}

    {{ __('home.sections.steps.items.submit.title') }}

    {{ __('home.sections.steps.items.submit.body') }}

  4. {{ __('home.sections.steps.step', ['number' => 4]) }}

    {{ __('home.sections.steps.items.finish.title') }}

    {{ __('home.sections.steps.items.finish.body') }}

{{ __('home.sections.benefits.items.pricing.title') }}

{{ __('home.sections.benefits.items.pricing.body') }}

{{ __('home.sections.benefits.items.time.title') }}

{{ __('home.sections.benefits.items.time.body') }}

{{ __('home.sections.benefits.items.simple.title') }}

{{ __('home.sections.benefits.items.simple.body') }}

{{ __('home.sections.benefits.items.correct.title') }}

{{ __('home.sections.benefits.items.correct.body') }}

{{ __('home.sections.benefits.items.status.title') }}

{{ __('home.sections.benefits.items.status.body') }}

{{ __('home.sections.benefits.items.support.title') }}

{{ __('home.sections.benefits.items.support.body') }}

{{ __('home.sections.faq.items.meaning.answer') }} {{ __('home.sections.faq.items.when.answer') }} {{ __('home.sections.faq.items.liquidation.answer') }} {{ __('home.sections.faq.items.person.answer') }} {{ __('home.sections.faq.items.documents.answer') }} {{ __('home.sections.faq.items.duration.answer') }} {{ __('home.sections.faq.items.after.answer') }}
@csrf
{{ session('success') }}

{{ __('home.form.error_summary') }}

@error('full_name'){{ $message }}@enderror

@error('phone'){{ $message }}@enderror

@error('cod_fiscal'){{ $message }}@enderror

@error('email'){{ $message }}@enderror

@error('message'){{ $message }}@enderror

{{ __('home.form.submit') }}

{{ __('home.form.reply_time') }}

@endsection