@extends('back.layouts.layout') @section('title','Edit Content') @section('content-header')

Edit Content

@endsection @section('content')
@csrf @method('put')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if($content->text!="")
@if ($errors->has('text')){{ $errors->first('text') }}@endif
@endif @if($content->link!="")
@if ($errors->has('link')){{ $errors->first('link') }}@endif
@endif @if($content->btn_text!="")
@if ($errors->has('btn_text')){{ $errors->first('btn_text') }}@endif
@endif
@if($content->image!="")
Image
@if($content->image!="")
@endif
@if ($errors->has('image')){{ $errors->first('image') }} @endif
@endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection