@extends('layouts.app') @section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(isset ($errors) && count($errors) > 0) @foreach($errors->all() as $error)
{{ $error }}
@endforeach @endif

{{$volunteer->name}}


كود التطوع : {{$volunteer->code}}

{{ date('Y-m-d', strtotime($volunteer->created_at)) }}

شرط التقدم للتطوع :

{!! $volunteer->condition !!}

@endsection @section('customScripts') @if(isset ($errors) && count($errors) > 0) @endif @endsection