@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' => 'heroSection.store', 'files' => true, 'method' => 'post']) !!}

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

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

@if($errors->has('image')) {{ $errors->first('image') }} @endif
{!! Form::close() !!}
@endsection @push('scripts') @endpush