1@extends('layouts.app') 2 3@section('content') 4@include('partials.page-header') 5 6@if(!have_posts()) 7<x-alerttype="warning"> 8{!!__('Sorry, but the page you are trying to view does not exist.','sage')!!} 9</x-alert>1011{!!get_search_form(false)!!}12@endif13@endsection