@extends('layouts.app') @section('title', 'Edit Industry Page') @section('content') Edit Industry Page {{ $page->name }} {!! Form::open(['route' => ['frontpage-industry-pages.update', $page->id], 'method' => 'put', 'files' => true]) !!} Page Information Name Slug Sort Statusis_active ? 'checked' : '' }}> Active Badge Hero Title Hero Subtitle{{ $page->hero_subtitle }} Hero Image @if($page->hero_image)@endif Screenshot Image @if($page->screenshot_image)@endif @include('frontpage_industry_pages.partials.repeaters') SEO SEO Title SEO Description{{ $page->seo_description }} SEO Keywords{{ $page->seo_keywords }} Back Save Page {!! Form::close() !!} @endsection