@extends('layouts.internal') @section('content') @section('breadcrumb')
@endsection
Actions:

No new action

@if (count($errors) > 0) @endif

Edit Company


{!! Form::open(array('route' => ['organizations.update', $organization->id],'method'=>'Put')) !!}
{!! Form::text('name', $organization->name, array('placeholder' => 'Name','class' => 'form-control')) !!}
{!! Form::text('website', $organization->website, array('placeholder' => 'Website','class' => 'form-control')) !!}
@php $previousUrl = ''; if(url()->previous() && url()->previous() != route('organizations.edit', $organization->id)){ $previousUrl =url()->previous(); }else{ $previousUrl = route('organizations.index'); } @endphp
{!! Form::close() !!}
Advertisement space
@endsection