@extends('app.layouts.main')
@section('header')
@stop
@section('content')
@include('app.partials.breadcrumb')
@include('app.partials.tabs')
@include('app.partials.messages')
{!! Element::mainbloc('open', __('app.contact'), 'fas fa-table') !!}
{!! Form::open(['route' => ['post.contact'], 'class' => 'form-horizontal', 'role' => 'form', 'id' => 'main_form', 'files' => false]) !!}
{!! Twb::admin_text('last_name',__('app.lastname'),"",[], $errors->first('last_name')) !!}
{!! Twb::admin_text('first_name',__('app.firstname'),"",[], $errors->first('first_name')) !!}
{!! Twb::admin_text('email',__('app.email'),"",[], $errors->first('email')) !!}
{!! Twb::admin_text('object',__('app.object'),"",[], $errors->first('object')) !!}
{!! Twb::admin_textarea('message',__('app.your_message'),"",[], $errors->first('message')) !!}
{!! Form::button(__('app.send'), ['type' => 'submit','','class' => 'btn btn-block btn-lg btn-success','id' => 'sendButton' ]) !!}
{!! Form::close() !!}
{!! Element::mainbloc('close') !!}
@stop
@section('footer')
@stop