@extends('admin.layout') @section('content')

{{ __('Client Section') }}

{{ __('Add New Client') }}

@csrf
@if ($errors->has('language_id'))

{{ $errors->first('language_id') }}

@endif

{{ __('Upload 70X70 (Pixel) Size image or Squre size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('image'))

{{ $errors->first('image') }}

@endif
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('link'))

{{ $errors->first('link') }}

@endif
@if ($errors->has('serial_number'))

{{ $errors->first('serial_number') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection