{{ trans('chat.bloqueFloat') }}

@if(Session::has('success'))
{{ Session::get('success') }}
@endif {!! Form::open(['route' => 'chat.create', 'method' => 'POST']) !!}
{!! $errors->first('name',':message') !!} {!! Form::text('name', null, ['class' => 'form-control','placeholder'=> trans('chat.inputName')]) !!}
{!! $errors->first('email',':message') !!} {!! Form::email('email', null, ['class' => 'form-control','placeholder'=> trans('chat.inputEmail')]) !!}
{!! $errors->first('subject',':message') !!} {!! Form::textarea('subject', null, ['class' => 'form-control','placeholder'=> trans('chat.inputComments')]) !!}
{!! Form::button(trans('chat.inputSubmit'), ['type' => 'submit','class' => 'btn btn-form']) !!}
{!! Form::close() !!}