@extends('layouts.app') @section('content')

Contact Form

@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif
{{ csrf_field() }}
@if ($errors->has('uname')) {{ $errors->first('uname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
@if ($errors->has('message')) {{ $errors->first('message') }} @endif
  • San Francisco, CA 94126, USA

  • + 01 234 567 89

  • contact@mdbootstrap.com

@endsection