@extends('frontend.layouts.main') @section('title', 'Contacto - Lash Vanshy') @section('content')

Información de Contacto

Teléfono @if(!empty($configuracion['telefono'])) {{ $configuracion['telefono'] }} @else +34 000 000 000 @endif
Email @if(!empty($configuracion['email'])) {{ $configuracion['email'] }} @else contacto@lashvanshy.com @endif
Dirección @if(!empty($configuracion['direccion'])) {{ $configuracion['direccion'] }} @else Tu dirección aquí @endif
Horario @if(!empty($configuracion['horario'])) {!! nl2br(e($configuracion['horario'])) !!} @else Lunes - Viernes: 10:00 - 20:00 @endif
Síguenos en redes sociales

Envíanos un Mensaje

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@error('nombre')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('telefono')
{{ $message }}
@enderror
@error('mensaje')
{{ $message }}
@enderror
@endsection