@extends('main') @section('css') @endsection @section('content')
@if (Session::get('succ_msg'))
{{Session::get('succ_msg')}}
@endif

What defines you best ?

@if ($validation_errors && count($validation_errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($validation_errors as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($individual)
@foreach ($individual as $i) @endforeach
@endif @if($organization)
@foreach ($organization as $o) @if($o->id != 251 && $o->id != 255 && $o->id != 256 && $o->id != 259) @endif @endforeach
@endif
@endsection @section('js') @endsection