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

What defines you best ?

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries

@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) @endforeach
@endif
@endsection @section('js') @endsection