@extends('layouts.main') @section('title') {{ __('near_by_places') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content')

{{ __('Create Place') }}

{!! Form::open(['files' => true, 'data-parsley-validate', 'url' => route('outdoor_facilities.store')]) !!}
{{ Form::label('type', __('Place Name'), ['class' => 'form-label text-center']) }} {{ Form::text('facility', '', [ 'class' => 'form-control', 'placeholder' => 'Facility', 'data-parsley-required' => 'true', ]) }}
{{ Form::label('image', __('Image'), ['class' => ' form-label text-center']) }} {{ Form::file('image', ['class' => 'form-control', 'data-parsley-required' => 'true', 'accept' => 'image/*']) }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ Form::submit(__('Save'), ['class' => 'btn btn-primary me-1 mb-1', 'id' => 'btn_submit']) }}
{!! Form::close() !!}
@if (has_permissions('update', 'type')) @endif
{{ __('ID') }} {{ __('Name') }} {{ __('Image') }}{{ __('Action') }}
@endsection @section('script') @endsection