{{ __('Contact') }}
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
{!! Form::open(['route'=>'contact.store']) !!}
{!! Form::label('Name') !!}*
{!! Form::text('name', old('name'), ['class'=>'form-control'.($errors->has('name') ? ' is-invalid' : ''), 'placeholder'=>'Enter Name']) !!}
{{ $errors->first('name') }}
{!! Form::label('Email') !!}*
{!! Form::text('email', old('email'), ['class'=>'form-control'.($errors->has('email') ? ' is-invalid' : ''), 'placeholder'=>'Enter Email']) !!}
{{ $errors->first('email') }}