@extends('Layouts.adminLayout') @section('title') {{__('Insert Notification')}} @endsection @section('breadcrumb')
@endsection @section('content')

{{__('Insert Notification')}}

@CSRF
@if ($errors->has('type_user'))
{{ $errors->first('type_user') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('link'))
{{ $errors->first('link') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('send_date_time'))
{{ $errors->first('send_date_time') }}
@endif
@if ($errors->has('file'))
{{ $errors->first('file') }}
@endif
@if ($errors->has('text'))
{{ $errors->first('text') }}
@endif
@endsection