@extends('layouts.app') @section('content')
{{ __('messages.about') }}

{{ __('messages.about') }}

{{ \App\Common\Helper::returnMessage("At Website.com, we believe everyone deserves to have a website or online store. Innovation and simplicity makes us happy: our goal is to remove any technical or financial barriers that can prevent business owners from making their own website. We're excited to help you on your journey!") }}

has('name')) autofocus @else value="{{ old('name') }}" @endif> @if($errors->has('name'))

{{ $errors->first('name') }}

@endif
has('email')) autofocus @else value="{{ old('email') }}" @endif> @if($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if($errors->has('comment'))

{{ $errors->first('comment') }}

@endif
@if( session('flash_message_succ') )
{{ session('flash_message_succ') }}
@endif
{{ csrf_field() }}
@endsection