@extends('layouts.app') @section('area', '| '.__('contacts')) @section('specif-css-page') @endsection @section('main-content')
  • {{ __('position') }}

    {!! __('location') !!}
  • {{ __('email_address') }}

    {{ config('contact.to') }}
  • {{ __('phone') }}

    {{ config('contact.phone') }}
    {{ __('work_time') }}

{{ __('contacts') }}

{{ __('contacts_title') }}

{{ __('contacts_header') }}

{{ __('contacts_form_warning') }}

@if (Session::has('message'))
  • {{ Session::get('message') }}
@endif @if($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::get('status') !== 'success')
{{ csrf_field() }}
@endif
@endsection @section('specific-js-page') @endsection