@extends('landlord.layout.main') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('not_permitted'))
{{ session()->get('not_permitted') }}
@endif
{!! Form::open(['route' => 'blog.store', 'files' => true, 'method' => 'post']) !!}

{{trans('file.Blog Section')}}

{{trans('file.The field labels marked with * are required input fields')}}.


{!! Form::close() !!}
@if($blogs) @foreach($blogs as $key=>$blog) @endforeach @endif
{{trans('file.Image')}} {{trans('file.Blog Title')}} {{trans('file.Action')}}
{{$key}} {{ $blog->title }}
@csrf
@endsection @push('scripts') @endpush