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

{{ __('Portfolio') }}

{{ __('Add Portfolio') }}

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

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

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

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

@endif

{{ __('Upload 710X400 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

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

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

@endif

{{ __('Upload 710X400 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection