@extends('apex-layouts.main') @section('content')
@if ($model->exists) @method('PUT') @endif @csrf
New Notification
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
image
Domain Url
@if ($errors->has('domain_url'))
{{ $errors->first('domain_url') }}
@endif
Message
{{ (old('message '))? old('message '): $model->message }}
@if ($errors->has('message'))
{{ $errors->first('message') }}
@endif
Back
Save
@endsection @section('scripts') @stop