@extends('admin.masters.base') @section('pagetitle') Social new entry @stop @section('crumbs')
  • Social
  • Edit Social Media
  • @stop @section('pagecontents')

    New Emirate

    Cancel

    {!! Form::model($social, ['url' => '/admin/socials/' . $social->id, 'method' => 'PATCH']) !!}
    {!! Form::label('icon', 'Icon', ['class' => 'control-label']) !!} {!! Form::text('icon', null, ['class' => 'form-control']) !!}
    {!! Form::label('social_media_name', 'Name', ['class' => 'control-label']) !!} {!! Form::text('social_media_name', null, ['class' => 'form-control']) !!}
    {!! Form::label('social_media_link', 'URL', ['class' => 'control-label']) !!} {!! Form::text('social_media_link', null, ['class' => 'form-control']) !!}
    Leaving the URL blank will hide the icon
    {!! Form::submit('Submit', ['class' => 'btn btn-primary']) !!}
    {!! Form::close() !!}
    @stop