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

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

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

@if($errors->has('image')) {{ $errors->first('image') }} @endif

{{trans('file.Modules')}}


{!! Form::close() !!}
@if($modules) @foreach($modules as $key=>$module) @endforeach @endif
{{trans('file.Icon')}} {{trans('file.name')}} {{trans('file.action')}}
{{$key}} {{ $module->icon }} {{ $module->name }}
@csrf
@endsection @push('scripts') @endpush