@extends('layouts.master') @section('page_title', 'Edit Website Tool') @section('content') {!! Form::model($tool, ['url' => action('SuperAdminSourceDataController@post_website_tool_edit', $tool), 'files' => true]) !!}
{{ Form::page_header("Edit Website Tool", "sourcedata") }}
{{ Form::button_link('Back', action('SuperAdminSourceDataController@show_website_tools'), 'back_btn') }}

{{ Form::label_styled('Website Tool Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('website_tool_name', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden("active", 0) }} {{ Form::checkbox_styled('active', null, 'Active', null, 'source-data-check') }}
@include('super_admin._upload_image', ['current_url' => $tool->url, 'image_name' => 'Icon'])

{{ Form::button_save('Update') }}
{!! Form::close() !!} @endsection @section('page_script') @include('shared_script._browse_button_script') @endsection