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

@yield('title')

@endsection @section('content')

{{ __('Create Facility') }}

{!! Form::open(['files' => true, 'data-parsley-validate']) !!}
{{ Form::label('type', __('Facility Name'), ['class' => 'form-label text-center']) }} {{ Form::text('parameter', '', ['class' => 'form-control', 'placeholder' => 'Facility', 'data-parsley-required' => 'true']) }}
{{ Form::label('type', __('Type'), ['class' => 'form-label text-center']) }}
{{ Form::label('image', __('Image'), ['class' => ' form-label text-center']) }} {{ Form::file('image', ['class' => 'form-control', 'data-parsley-required' => 'true', 'accept' => '.svg']) }}
{{ 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') }} {{ __('Type') }} {{ __('Value') }}{{ __('Action') }}
@endsection @section('script') @endsection