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

Edit Client

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