@extends('back.layouts.layout') @section('title','Edit Page') @section('content-header') Edit Page Dashboard Page Edit Page @endsection @section('content') @csrf @method('put') Name * @if ($errors->has('name')){{ $errors->first('name') }}@endif Description {{ (!empty(old('description'))) ? old('description') : $page->description }} @if ($errors->has('description')){{ $errors->first('description') }}@endif Image @if($page->image!="") @endif @if ($errors->has('image')){{ $errors->first('image') }} @endif Status @foreach($statuses as $key=> $status) status) selected @endif>{{ $status }} @endforeach @if ($errors->has('status')){{ $errors->first('status') }} @endif Publish Save Page List @endsection