PHP Classes

File: resources/views/backend/pages/page/create.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Devs Hunt   resources/views/backend/pages/page/create.blade.php   Download  
File: resources/views/backend/pages/page/create.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Devs Hunt
Manage courses and student enrolment
Author: By
Last change:
Date: 1 month ago
Size: 3,222 bytes
 

Contents

Class file image Download
@extends('backend.layouts.master')

@section('title')
    New Page
@endsection

@section('page-right-side')
    <nav aria-label="breadcrumb">
        <ol class="breadcrumb">
            <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">Home</a></li>
            <li class="breadcrumb-item"><a href="{{ route('admin.pages.index') }}">Pages</a></li>
            <li class="breadcrumb-item active" aria-current="page">Create New page</li>
        </ol>
    </nav>
@endsection

@section('admin-content')
@section('admin-content')
    <div class="card card-body">
        <form action="{{ route('admin.pages.store') }}" method="post" enctype="multipart/form-data">
            @csrf
            <div class="row">
                <div class="col-12 col-md-6 mb-3">
                    <label for="title" class="form-label">
                        Title
                        <span class="text-danger">*</span>
                    </label>
                    <input type="text" class="form-control" name="title" id="title"
                        placeholder="Enter page title" value="{{ old('title') }}" required>
                </div>
                <div class="col-12 col-md-6 mb-3">
                    <label for="slug" class="form-label">
                        Slug
                        <span class="text-info">(optional)</span>
                    </label>
                    <input type="text" class="form-control" name="slug" id="slug"
                        placeholder="Enter page slug (if needs modified)" value="{{ old('slug') }}">
                </div>
                <div class="col-12 col-md-12 mb-3">
                    <label for="editor" class="form-label">
                        Description
                        <span class="text-info">(optional)</span>
                    </label>
                    <textarea class="form-control" name="description" id="editor" rows="3">{!! old('description') !!}</textarea>
                </div>
                <div class="col-12 col-md-6 mb-3">
                    <label for="meta_keywords" class="form-label">
                        Meta keywords
                        <span class="text-info">(optional)</span>
                    </label>
                    <textarea class="form-control" name="meta_keywords" id="meta_keywords" rows="2">{{ old('meta_keywords') }}</textarea>
                </div>
                <div class="col-12 col-md-6 mb-3">
                    <label for="meta_description" class="form-label">
                        Meta description
                        <span class="text-info">(optional)</span>
                    </label>
                    <textarea class="form-control" name="meta_description" id="meta_description" rows="2">{{ old('meta_description') }}</textarea>
                </div>
            </div>
            <div class="mb-3">
                <a href="{{ route('admin.pages.index') }}" class="btn btn-secondary mr-3">
                    Cancel
                </a>

                <button type="submit" class="btn btn-success">
                    Save
                </button>
            </div>
        </form>
    </div>
@endsection

@section('scripts')
@endsection