@extends('layouts.admin') @section('styles') @endsection @section('page-header', 'New Contact') @section('content')
@csrf
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('link')) {{ $errors->first('link') }} @endif
@endsection