@extends('admin.layout.master') @section('style') @stop @section('body')

{{$page_title}}

{{ csrf_field() }}
Status
@if ($errors->has('location'))
{{ $errors->first('location') }}
@endif
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
Category
@if ($errors->has('cat_id'))
{{ $errors->first('cat_id') }}
@endif
Campaign Owner
@if ($errors->has('campaignowner'))
{{ $errors->first('campaignowner') }}
@endif
Campaign Count
@if ($errors->has('campaigncount'))
{{ $errors->first('campaigncount') }}
@endif
Campaign Addresse
@if ($errors->has('campaignadddress'))
{{ $errors->first('campaignadddress') }}
@endif
Amount Sold
@if ($errors->has('salary'))
{{ $errors->first('salary') }}
@endif
Backers
@if ($errors->has('backers'))
{{ $errors->first('backers') }}
@endif
Campaign Percent
@if ($errors->has('campaignpercent'))
{{ $errors->first('campaignpercent') }}
@endif
Campaign End Days
@if ($errors->has('campaignende'))
{{ $errors->first('campaignende') }}
@endif
Short Story
@if ($errors->has('short_story'))
{{ $errors->first('short_story') }}
@endif
Image
@if($job->image != null) ... @else ... @endif
Select image Change Remove
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if(!empty($job->dopimage)) @php $existingImages = explode(',', $job->dopimage); // Перетворюємо рядок у масив @endphp @foreach($existingImages as $img)
@endforeach @endif
Description
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif



@endsection @section('script') @stop