@extends('layouts.frontend.master') @section('style') @endsection @section('content')

{{$layout->label->contact_note->title}}


{{$layout->label->contact_fillin->title}}

{{csrf_field()}}
@if($errors->has('name'))
{!! Helper::alert('danger', $errors->first('name')) !!}
@endif
@if($errors->has('email'))
{!! Helper::alert('danger', $errors->first('email')) !!}
@endif
@if($errors->has('telephone'))
{!! Helper::alert('danger', $errors->first('telephone')) !!}
@endif
@if($errors->has('message'))
{!! Helper::alert('danger', $errors->first('message')) !!}
@endif
@if(Session::has('inserted'))
{!! Helper::alert('success', Session::get('inserted'), 'block font-15') !!}
@endif
@endsection @section('script') @endsection