@extends('dashboard::layouts.master') @section('title', 'Edit Client') @section('content') @if (session('status'))
@endif @if ($errors->any())
@endif

Edit Client

@csrf @method("put")
@php $img = url('/storage/clients/'.$client->client_image); @endphp
client_image ? 'style=background-image:url('.$img.');' : ''}}>
@error('client_image')
{{ $message }}
@enderror
@error('client_fileupload')
{{ $message }}
@enderror
@error('client_product_name')
{{ $message }}
@enderror
@error('client_name')
{{ $message }}
@enderror
client_visible ? 'checked="checked"': '' }}/>
@endsection @push('scripts') @endpush