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

Contacts

Add Contact

@if(Session::has('error'))
{{ Session::get('error') }}
@endif @if(Session::has('success'))
{{ Session::get('success') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
@endsection