@extends('layouts.master') @section('page_title', 'Edit Mockup Link') @section('content')
{{ Form::page_header("Edit Mockup Link", "hours") }} {{ Form::open(['url' => action('DesignPlanController@mockup_link_update', compact('mockup_link', 'redirect_url'))]) }}
{{ Form::row_text_inline('title', 'Title', $mockup_link->title, 1, 6, \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::row_text_inline('url', 'URL', $mockup_link->url, 1, 6, App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::label_styled('Last updated at: ' . $mockup_link->updated_datetime_label, null, \App\Helpers\FormComponentHelper::SIZE_SMALL, 6) }}
{{ Form::button_save() }} {{ Form::button_link('Cancel', $redirect_url, 'cancel_btn') }}
{{ Form::close() }}
@endsection