@extends('backends.layouts.master_layout') @section('page_heading','Message') @section('title',"Directors Message") @section('content')
@include('backends.includes.notification')

Add Board of Directors

@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if($errors->has('sort_by'))
{{ $errors->first('sort_by') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif
Cancel
@endsection