@extends('layouts.master') @section('page_title', 'Edit Color') @section('content') {!! Form::model($color, ['url' => action('SuperAdminSourceDataController@post_color_edit', $color), 'files' => true]) !!}
{{ Form::page_header("Edit Color", "sourcedata") }}
{{ Form::button_link('Back', action('SuperAdminSourceDataController@color_family_edit', compact('family')), 'back_btn') }}


{{ Form::label_styled('Color Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('visual_personality_source_name', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden('active', 0) }} {{ Form::checkbox('active', 1, null, ['class' => 'brand-checkbox no-fade']) }}
@include('super_admin._upload_image', ['current_url' => $color->url])

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