@section('optional_css')
@endsection @section('optional_js') @endsection
{{ __('Client') }}
@if(session('success'))
{{ session('success') }}
@endif
{{ __('Edit') }} {{ __('Client') }}
@csrf @method('PUT')
{{ __('Title') }}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
{{ __('Description') }}
{{ old('description', $client->description) }}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{{ __('Image') }}
@if(!empty($client->image))
@endif
Select Image
Remove
Upload image if add image
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
{{ __('Link') }}
@if ($errors->has('link'))
{{ $errors->first('link') }}
@endif
{{ __('Publish') }}
publish))?'checked':'' }} data-bootstrap-switch>
{{ __('Save') }}