28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
@extends('backend.admin-master')
|
|
@section('site-title')
|
|
{{__('Job Page Settings')}}
|
|
@endsection
|
|
@section('content')
|
|
<div class="col-lg-12 col-ml-12 padding-bottom-30">
|
|
<div class="row">
|
|
<div class="col-12 mt-5">
|
|
<x-flash-msg/>
|
|
<x-error-msg/>
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h4 class="header-title">{{__("Job Page Settings")}}</h4>
|
|
<form action="{{route('admin.jobs.page.settings')}}" method="POST" enctype="multipart/form-data">
|
|
@csrf
|
|
<div class="form-group">
|
|
<label for="site_job_post_items">{{__('Jobs Items')}}</label>
|
|
<input type="text" name="site_job_post_items" class="form-control" value="{{get_static_option('site_job_post_items')}}" id="site_job_post_items">
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary mt-4 pr-4 pl-4">{{__('Update Changes')}}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |